public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [patch] x86: add missing annotation to arch/x86/lib/copy_user_64.S::copy_to_user
@ 2009-07-02  5:27 Mike Galbraith
  2009-07-03  9:10 ` [tip:x86/urgent] x86: Add " tip-bot for Mike Galbraith
  2009-07-03 12:44 ` tip-bot for Mike Galbraith
  0 siblings, 2 replies; 3+ messages in thread
From: Mike Galbraith @ 2009-07-02  5:27 UTC (permalink / raw)
  To: LKML, Ingo Molnar; +Cc: Alexander van Heukelum, Cyrill Gorcunov


x86: add missing annotation to arch/x86/lib/copy_user_64.S::copy_to_user

While examining symbol generation in perf_counter tools, I noticed that
copy_to_user() had no size in vmlinux's symtab.

Signed-off-by: Mike Galbraith <efault@gmx.de>
Acked-by: Alexander van Heukelum <heukelum@fastmail.fm>
Acked-by: Cyrill Gorcunov <gorcunov@openvz.org>
Cc: Ingo Molnar <mingo@elte.hu>
Cc: Alexander van Heukelum <heukelum@fastmail.fm>
Cc: Cyrill Gorcunov <gorcunov@openvz.org>
LKML-Reference: <new-submission>

---
 arch/x86/lib/copy_user_64.S |    1 +
 1 file changed, 1 insertion(+)

Index: linux-2.6/arch/x86/lib/copy_user_64.S
===================================================================
--- linux-2.6.orig/arch/x86/lib/copy_user_64.S
+++ linux-2.6/arch/x86/lib/copy_user_64.S
@@ -75,6 +75,7 @@ ENTRY(copy_to_user)
 	jae bad_to_user
 	ALTERNATIVE_JUMP X86_FEATURE_REP_GOOD,copy_user_generic_unrolled,copy_user_generic_string
 	CFI_ENDPROC
+ENDPROC(copy_to_user)
 
 /* Standard copy_from_user with segment limit checking */
 ENTRY(copy_from_user)



^ permalink raw reply	[flat|nested] 3+ messages in thread

* [tip:x86/urgent] x86: Add missing annotation to arch/x86/lib/copy_user_64.S::copy_to_user
  2009-07-02  5:27 [patch] x86: add missing annotation to arch/x86/lib/copy_user_64.S::copy_to_user Mike Galbraith
@ 2009-07-03  9:10 ` tip-bot for Mike Galbraith
  2009-07-03 12:44 ` tip-bot for Mike Galbraith
  1 sibling, 0 replies; 3+ messages in thread
From: tip-bot for Mike Galbraith @ 2009-07-03  9:10 UTC (permalink / raw)
  To: linux-tip-commits
  Cc: linux-kernel, hpa, mingo, gorcunov, efault, heukelum, tglx, mingo

Commit-ID:  dc5ceb1c100c9f103a7fae448a7c1edb9b8fe492
Gitweb:     http://git.kernel.org/tip/dc5ceb1c100c9f103a7fae448a7c1edb9b8fe492
Author:     Mike Galbraith <efault@gmx.de>
AuthorDate: Thu, 2 Jul 2009 07:27:20 +0200
Committer:  Ingo Molnar <mingo@elte.hu>
CommitDate: Fri, 3 Jul 2009 11:07:49 +0200

x86: Add missing annotation to arch/x86/lib/copy_user_64.S::copy_to_user

While examining symbol generation in perf_counter tools, I
noticed that copy_to_user() had no size in vmlinux's symtab.

Signed-off-by: Mike Galbraith <efault@gmx.de>
Acked-by: Alexander van Heukelum <heukelum@fastmail.fm>
Acked-by: Cyrill Gorcunov <gorcunov@openvz.org>
LKML-Reference: <1246512440.13293.3.camel@marge.simson.net>
Signed-off-by: Ingo Molnar <mingo@elte.hu>


---
 arch/x86/lib/copy_user_64.S |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/arch/x86/lib/copy_user_64.S b/arch/x86/lib/copy_user_64.S
index f118c11..6ba0f7b 100644
--- a/arch/x86/lib/copy_user_64.S
+++ b/arch/x86/lib/copy_user_64.S
@@ -75,6 +75,7 @@ ENTRY(copy_to_user)
 	jae bad_to_user
 	ALTERNATIVE_JUMP X86_FEATURE_REP_GOOD,copy_user_generic_unrolled,copy_user_generic_string
 	CFI_ENDPROC
+ENDPROC(copy_to_user)
 
 /* Standard copy_from_user with segment limit checking */
 ENTRY(copy_from_user)

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [tip:x86/urgent] x86: Add missing annotation to arch/x86/lib/copy_user_64.S::copy_to_user
  2009-07-02  5:27 [patch] x86: add missing annotation to arch/x86/lib/copy_user_64.S::copy_to_user Mike Galbraith
  2009-07-03  9:10 ` [tip:x86/urgent] x86: Add " tip-bot for Mike Galbraith
@ 2009-07-03 12:44 ` tip-bot for Mike Galbraith
  1 sibling, 0 replies; 3+ messages in thread
From: tip-bot for Mike Galbraith @ 2009-07-03 12:44 UTC (permalink / raw)
  To: linux-tip-commits
  Cc: linux-kernel, hpa, mingo, gorcunov, efault, heukelum, tglx, mingo

Commit-ID:  3fd382cedfb4fb742a8cc17ba15288ec03131db1
Gitweb:     http://git.kernel.org/tip/3fd382cedfb4fb742a8cc17ba15288ec03131db1
Author:     Mike Galbraith <efault@gmx.de>
AuthorDate: Thu, 2 Jul 2009 07:27:20 +0200
Committer:  Ingo Molnar <mingo@elte.hu>
CommitDate: Fri, 3 Jul 2009 14:34:17 +0200

x86: Add missing annotation to arch/x86/lib/copy_user_64.S::copy_to_user

While examining symbol generation in perf_counter tools, I
noticed that copy_to_user() had no size in vmlinux's symtab.

Signed-off-by: Mike Galbraith <efault@gmx.de>
Acked-by: Alexander van Heukelum <heukelum@fastmail.fm>
Acked-by: Cyrill Gorcunov <gorcunov@openvz.org>
LKML-Reference: <1246512440.13293.3.camel@marge.simson.net>
Signed-off-by: Ingo Molnar <mingo@elte.hu>


---
 arch/x86/lib/copy_user_64.S |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/arch/x86/lib/copy_user_64.S b/arch/x86/lib/copy_user_64.S
index f118c11..6ba0f7b 100644
--- a/arch/x86/lib/copy_user_64.S
+++ b/arch/x86/lib/copy_user_64.S
@@ -75,6 +75,7 @@ ENTRY(copy_to_user)
 	jae bad_to_user
 	ALTERNATIVE_JUMP X86_FEATURE_REP_GOOD,copy_user_generic_unrolled,copy_user_generic_string
 	CFI_ENDPROC
+ENDPROC(copy_to_user)
 
 /* Standard copy_from_user with segment limit checking */
 ENTRY(copy_from_user)

^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2009-07-03 12:46 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-07-02  5:27 [patch] x86: add missing annotation to arch/x86/lib/copy_user_64.S::copy_to_user Mike Galbraith
2009-07-03  9:10 ` [tip:x86/urgent] x86: Add " tip-bot for Mike Galbraith
2009-07-03 12:44 ` tip-bot for Mike Galbraith

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox