Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge branch 'for-3.16-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/tj/percpu

Pull percpu fix from Tejun Heo:
"One patch to fix a typo in percpu section name. Given how long the
bug has been there and that there hasn't been any report of brekage,
it's unlikely to cause actual issues"

* 'for-3.16-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/tj/percpu:
core: fix typo in percpu read_mostly section

+3 -3
+1 -1
include/asm-generic/vmlinux.lds.h
··· 693 693 . = ALIGN(PAGE_SIZE); \ 694 694 *(.data..percpu..page_aligned) \ 695 695 . = ALIGN(cacheline); \ 696 - *(.data..percpu..readmostly) \ 696 + *(.data..percpu..read_mostly) \ 697 697 . = ALIGN(cacheline); \ 698 698 *(.data..percpu) \ 699 699 *(.data..percpu..shared_aligned) \
+2 -2
include/linux/percpu-defs.h
··· 146 146 * Declaration/definition used for per-CPU variables that must be read mostly. 147 147 */ 148 148 #define DECLARE_PER_CPU_READ_MOSTLY(type, name) \ 149 - DECLARE_PER_CPU_SECTION(type, name, "..readmostly") 149 + DECLARE_PER_CPU_SECTION(type, name, "..read_mostly") 150 150 151 151 #define DEFINE_PER_CPU_READ_MOSTLY(type, name) \ 152 - DEFINE_PER_CPU_SECTION(type, name, "..readmostly") 152 + DEFINE_PER_CPU_SECTION(type, name, "..read_mostly") 153 153 154 154 /* 155 155 * Intermodule exports for per-CPU variables. sparse forgets about