Le mercredi 20 octobre 2010 à 11:07 +0800, Shaohua Li a écrit :Could you precisely describe why grouping together read mostly percpu variables is a win ? Especially when you add in your next patch a single variable ? So percpu..page_aligned is not any more aligned to a PAGE ? or we have a big hole before it ? Hmm.... Maybe you should put first data..percpu..page_aligned, then align to one cache line (L1_CACHE_BYTES), then data..percpu..readmostly, so that hole is small. We should take care of not introducing too much holes in percpu zone. Maybe using a new subzone ".data..percpu..small_objects" to put small objects in it. nm -v vmlinux | grep -10 sockets_in_use # select one random part 0000000000011e0c d cpu_min_freq 0000000000011e10 d cpu_cur_freq 0000000000011e14 d cpu_set_freq 0000000000011e18 d cpu_is_managed 0000000000011e20 d od_cpu_dbs_info 0000000000011fa0 d cs_cpu_dbs_info 00000000000120f0 d cpufreq_show_table 0000000000012100 D cpuidle_devices 0000000000012120 d ladder_devices 0000000000012200 d menu_devices 00000000000122c0 d sockets_in_use # object_size = 4 , hole = 28bytes 00000000000122e0 d prot_inuse 00000000000123e0 D nf_conntrack_untracked 0000000000012560 d rt_cache_stat 00000000000125a0 d ipv4_cookie_scratch 0000000000012740 D init_tss 0000000000014a00 D irq_stat 0000000000014a40 D cpu_info 0000000000014b00 d hv_clock 0000000000014b40 D cpu_tlbstate 0000000000014b80 d runqueues We can see many holes because of 2^5 alignments of individual .o .data..percpu sections. find . -name "*.o"|xargs objdump -h|grep percpu Linker promotes a section alignment from natural alignment to 2^5 as soon as the size reaches 2^5 For example in net/ipv4/route.o, we have a per_cpu structure (rt_cache_stat), that is an array of 16 integers. The natural alignement should be 4 (alignof(int)), but we get : # objdump -h net/ipv4/route.o|grep percpu 19 .data..percpu 00000040 0000000000000000 0000000000000000 00007a80 2**5 For a section replicated N times, this really is a concern. Thanks ! --
| Jesse Barnes | Re: [stable] [BUG][PATCH] cpqphp: fix kernel NULL pointer dereference |
| Greg KH | [003/136] p54usb: add Zcomax XG-705A usbid |
| Magnus Damm | [PATCH 03/07] ARM: Use shared GIC entry macros on Realview |
| Oliver Neukum | Re: [Bug #13682] The webcam stopped working when upgrading from 2.6.29 to 2.6.30 |
| Martin Schwidefsky | Re: [PATCH] optimized ktime_get[_ts] for GENERIC_TIME=y |
git: | |
| Junio C Hamano | Re: Some advanced index playing |
| Jeff King | Re: confusion over the new branch and merge config |
| Robin Rosenberg | Re: cvs2svn conversion directly to git ready for experimentation |
| Linus Torvalds | git binary size... |
| Ævar Arnfjörð Bjarmason | Re: Challenge with Git-Bash |
| Linux Kernel Mailing List | md: move allocation of ->queue from mddev_find to md_probe |
| Linux Kernel Mailing List | md: raid0: Represent zone->zone_offset in sectors. |
