* [GIT PULL] workqueue fixes for v3.16-rc4
@ 2014-07-10 14:54 Tejun Heo
2014-07-10 14:56 ` [GIT RESEND PULL] percpu " Tejun Heo
0 siblings, 1 reply; 2+ messages in thread
From: Tejun Heo @ 2014-07-10 14:54 UTC (permalink / raw)
To: Linus Torvalds; +Cc: linux-kernel
Hello, Linus.
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.
Thanks.
The following changes since commit ebe06187bf2aec10d537ce4595e416035367d703:
epoll: fix use-after-free in eventpoll_release_file (2014-06-16 17:21:59 -1000)
are available in the git repository at:
git://git.kernel.org/pub/scm/linux/kernel/git/tj/percpu.git for-3.16-fixes
for you to fetch changes up to 330d282216d6e4d845a21b72572dc4df4122e8fa:
core: fix typo in percpu read_mostly section (2014-07-01 16:45:22 -0400)
----------------------------------------------------------------
Zhengyu He (1):
core: fix typo in percpu read_mostly section
include/asm-generic/vmlinux.lds.h | 2 +-
include/linux/percpu-defs.h | 4 ++--
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/include/asm-generic/vmlinux.lds.h b/include/asm-generic/vmlinux.lds.h
index 471ba48..c1c0b0c 100644
--- a/include/asm-generic/vmlinux.lds.h
+++ b/include/asm-generic/vmlinux.lds.h
@@ -693,7 +693,7 @@
. = ALIGN(PAGE_SIZE); \
*(.data..percpu..page_aligned) \
. = ALIGN(cacheline); \
- *(.data..percpu..readmostly) \
+ *(.data..percpu..read_mostly) \
. = ALIGN(cacheline); \
*(.data..percpu) \
*(.data..percpu..shared_aligned) \
diff --git a/include/linux/percpu-defs.h b/include/linux/percpu-defs.h
index a5fc7d0..dec01d6 100644
--- a/include/linux/percpu-defs.h
+++ b/include/linux/percpu-defs.h
@@ -146,10 +146,10 @@
* Declaration/definition used for per-CPU variables that must be read mostly.
*/
#define DECLARE_PER_CPU_READ_MOSTLY(type, name) \
- DECLARE_PER_CPU_SECTION(type, name, "..readmostly")
+ DECLARE_PER_CPU_SECTION(type, name, "..read_mostly")
#define DEFINE_PER_CPU_READ_MOSTLY(type, name) \
- DEFINE_PER_CPU_SECTION(type, name, "..readmostly")
+ DEFINE_PER_CPU_SECTION(type, name, "..read_mostly")
/*
* Intermodule exports for per-CPU variables. sparse forgets about
^ permalink raw reply [flat|nested] 2+ messages in thread
* [GIT RESEND PULL] percpu fixes for v3.16-rc4
2014-07-10 14:54 [GIT PULL] workqueue fixes for v3.16-rc4 Tejun Heo
@ 2014-07-10 14:56 ` Tejun Heo
0 siblings, 0 replies; 2+ messages in thread
From: Tejun Heo @ 2014-07-10 14:56 UTC (permalink / raw)
To: Linus Torvalds; +Cc: linux-kernel
(The original one went out with "workqueue fixes" in $SUBJ. Sorry.)
Hello, Linus.
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.
Thanks.
The following changes since commit ebe06187bf2aec10d537ce4595e416035367d703:
epoll: fix use-after-free in eventpoll_release_file (2014-06-16 17:21:59 -1000)
are available in the git repository at:
git://git.kernel.org/pub/scm/linux/kernel/git/tj/percpu.git for-3.16-fixes
for you to fetch changes up to 330d282216d6e4d845a21b72572dc4df4122e8fa:
core: fix typo in percpu read_mostly section (2014-07-01 16:45:22 -0400)
----------------------------------------------------------------
Zhengyu He (1):
core: fix typo in percpu read_mostly section
include/asm-generic/vmlinux.lds.h | 2 +-
include/linux/percpu-defs.h | 4 ++--
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/include/asm-generic/vmlinux.lds.h b/include/asm-generic/vmlinux.lds.h
index 471ba48..c1c0b0c 100644
--- a/include/asm-generic/vmlinux.lds.h
+++ b/include/asm-generic/vmlinux.lds.h
@@ -693,7 +693,7 @@
. = ALIGN(PAGE_SIZE); \
*(.data..percpu..page_aligned) \
. = ALIGN(cacheline); \
- *(.data..percpu..readmostly) \
+ *(.data..percpu..read_mostly) \
. = ALIGN(cacheline); \
*(.data..percpu) \
*(.data..percpu..shared_aligned) \
diff --git a/include/linux/percpu-defs.h b/include/linux/percpu-defs.h
index a5fc7d0..dec01d6 100644
--- a/include/linux/percpu-defs.h
+++ b/include/linux/percpu-defs.h
@@ -146,10 +146,10 @@
* Declaration/definition used for per-CPU variables that must be read mostly.
*/
#define DECLARE_PER_CPU_READ_MOSTLY(type, name) \
- DECLARE_PER_CPU_SECTION(type, name, "..readmostly")
+ DECLARE_PER_CPU_SECTION(type, name, "..read_mostly")
#define DEFINE_PER_CPU_READ_MOSTLY(type, name) \
- DEFINE_PER_CPU_SECTION(type, name, "..readmostly")
+ DEFINE_PER_CPU_SECTION(type, name, "..read_mostly")
/*
* Intermodule exports for per-CPU variables. sparse forgets about
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2014-07-10 14:56 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-07-10 14:54 [GIT PULL] workqueue fixes for v3.16-rc4 Tejun Heo
2014-07-10 14:56 ` [GIT RESEND PULL] percpu " Tejun Heo
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
Powered by JetHome