* [KERNEL][PATCH] add utrace
@ 2011-06-13 14:35 tom.zanussi
2011-06-13 14:35 ` [KERNEL][PATCH] utrace: support for user space probing/tracing tom.zanussi
` (2 more replies)
0 siblings, 3 replies; 4+ messages in thread
From: tom.zanussi @ 2011-06-13 14:35 UTC (permalink / raw)
To: yocto
From: Tom Zanussi <tom.zanussi@intel.com>
This adds support for utrace to linux-yocto, for userspace tracing
in systemtap.
Please pull into the yocto/base branch linux-yocto.
Pull URL: git://git.pokylinux.org/linux-yocto-2.6.37-contrib
Branch: tzanussi/yocto/base-utrace
Browse: http://git.pokylinux.org/cgit.cgi/linux-yocto-2.6.37-contrib/log/?h=tzanussi/yocto/base-utrace
Tom Zanussi (1):
utrace: support for user space probing/tracing
Documentation/DocBook/Makefile | 2 +-
Documentation/DocBook/utrace.tmpl | 589 +++++++++
fs/proc/array.c | 3 +
include/linux/ptrace.h | 1 +
include/linux/sched.h | 6 +
include/linux/tracehook.h | 97 ++-
include/linux/utrace.h | 692 +++++++++++
init/Kconfig | 9 +
kernel/Makefile | 1 +
kernel/fork.c | 3 +
kernel/ptrace.c | 16 +-
kernel/signal.c | 4 +-
kernel/utrace.c | 2440 +++++++++++++++++++++++++++++++++++++
13 files changed, 3853 insertions(+), 10 deletions(-)
create mode 100644 Documentation/DocBook/utrace.tmpl
create mode 100644 include/linux/utrace.h
create mode 100644 kernel/utrace.c
^ permalink raw reply [flat|nested] 4+ messages in thread* [KERNEL][PATCH] utrace: support for user space probing/tracing
2011-06-13 14:35 [KERNEL][PATCH] add utrace tom.zanussi
@ 2011-06-13 14:35 ` tom.zanussi
2011-06-14 14:30 ` [KERNEL][PATCH] add utrace Bruce Ashfield
2011-06-16 20:11 ` Bruce Ashfield
2 siblings, 0 replies; 4+ messages in thread
From: tom.zanussi @ 2011-06-13 14:35 UTC (permalink / raw)
To: yocto
From: Tom Zanussi <tom.zanussi@intel.com>
Used by SystemTap.
Patch generated by diff of 2.6.37 base and utrace branches of the
official utrace git repo at:
git://git.kernel.org/pub/scm/linux/kernel/git/frob/linux-2.6-utrace.git
Integrated-by: Tom Zanussi <tom.zanussi@intel.com>
---
Documentation/DocBook/Makefile | 2 +-
Documentation/DocBook/utrace.tmpl | 589 +++++++++
fs/proc/array.c | 3 +
include/linux/ptrace.h | 1 +
include/linux/sched.h | 6 +
include/linux/tracehook.h | 97 ++-
include/linux/utrace.h | 692 +++++++++++
init/Kconfig | 9 +
kernel/Makefile | 1 +
kernel/fork.c | 3 +
kernel/ptrace.c | 16 +-
kernel/signal.c | 4 +-
kernel/utrace.c | 2440 +++++++++++++++++++++++++++++++++++++
13 files changed, 3853 insertions(+), 10 deletions(-)
create mode 100644 Documentation/DocBook/utrace.tmpl
create mode 100644 include/linux/utrace.h
create mode 100644 kernel/utrace.c
Patch too large to post, see git branch for details.
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [KERNEL][PATCH] add utrace
2011-06-13 14:35 [KERNEL][PATCH] add utrace tom.zanussi
2011-06-13 14:35 ` [KERNEL][PATCH] utrace: support for user space probing/tracing tom.zanussi
@ 2011-06-14 14:30 ` Bruce Ashfield
2011-06-16 20:11 ` Bruce Ashfield
2 siblings, 0 replies; 4+ messages in thread
From: Bruce Ashfield @ 2011-06-14 14:30 UTC (permalink / raw)
To: tom.zanussi; +Cc: yocto
On 06/13/11 10:35, tom.zanussi@intel.com wrote:
> From: Tom Zanussi<tom.zanussi@intel.com>
>
> This adds support for utrace to linux-yocto, for userspace tracing
> in systemtap.
>
> Please pull into the yocto/base branch linux-yocto.
>
> Pull URL: git://git.pokylinux.org/linux-yocto-2.6.37-contrib
> Branch: tzanussi/yocto/base-utrace
> Browse: http://git.pokylinux.org/cgit.cgi/linux-yocto-2.6.37-contrib/log/?h=tzanussi/yocto/base-utrace
ack'd. These look good. I'm just finishing up the
recipe renames for linux-yocto and will start feature
merging into the kernel repo shortly. I'd expect to have
this in by end of day.
Bruce
>
> Tom Zanussi (1):
> utrace: support for user space probing/tracing
>
> Documentation/DocBook/Makefile | 2 +-
> Documentation/DocBook/utrace.tmpl | 589 +++++++++
> fs/proc/array.c | 3 +
> include/linux/ptrace.h | 1 +
> include/linux/sched.h | 6 +
> include/linux/tracehook.h | 97 ++-
> include/linux/utrace.h | 692 +++++++++++
> init/Kconfig | 9 +
> kernel/Makefile | 1 +
> kernel/fork.c | 3 +
> kernel/ptrace.c | 16 +-
> kernel/signal.c | 4 +-
> kernel/utrace.c | 2440 +++++++++++++++++++++++++++++++++++++
> 13 files changed, 3853 insertions(+), 10 deletions(-)
> create mode 100644 Documentation/DocBook/utrace.tmpl
> create mode 100644 include/linux/utrace.h
> create mode 100644 kernel/utrace.c
>
> _______________________________________________
> yocto mailing list
> yocto@yoctoproject.org
> https://lists.yoctoproject.org/listinfo/yocto
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [KERNEL][PATCH] add utrace
2011-06-13 14:35 [KERNEL][PATCH] add utrace tom.zanussi
2011-06-13 14:35 ` [KERNEL][PATCH] utrace: support for user space probing/tracing tom.zanussi
2011-06-14 14:30 ` [KERNEL][PATCH] add utrace Bruce Ashfield
@ 2011-06-16 20:11 ` Bruce Ashfield
2 siblings, 0 replies; 4+ messages in thread
From: Bruce Ashfield @ 2011-06-16 20:11 UTC (permalink / raw)
To: tom.zanussi; +Cc: yocto
On 06/13/11 10:35, tom.zanussi@intel.com wrote:
> From: Tom Zanussi<tom.zanussi@intel.com>
>
> This adds support for utrace to linux-yocto, for userspace tracing
> in systemtap.
>
> Please pull into the yocto/base branch linux-yocto.
>
> Pull URL: git://git.pokylinux.org/linux-yocto-2.6.37-contrib
> Branch: tzanussi/yocto/base-utrace
> Browse: http://git.pokylinux.org/cgit.cgi/linux-yocto-2.6.37-contrib/log/?h=tzanussi/yocto/base-utrace
These are merged, and pushed. I put this in a
common location so all BSPs have the changes.
I'm doing some final build testing now, but I'll have
a SRCREV update for this later today.
Cheers,
Bruce
>
> Tom Zanussi (1):
> utrace: support for user space probing/tracing
>
> Documentation/DocBook/Makefile | 2 +-
> Documentation/DocBook/utrace.tmpl | 589 +++++++++
> fs/proc/array.c | 3 +
> include/linux/ptrace.h | 1 +
> include/linux/sched.h | 6 +
> include/linux/tracehook.h | 97 ++-
> include/linux/utrace.h | 692 +++++++++++
> init/Kconfig | 9 +
> kernel/Makefile | 1 +
> kernel/fork.c | 3 +
> kernel/ptrace.c | 16 +-
> kernel/signal.c | 4 +-
> kernel/utrace.c | 2440 +++++++++++++++++++++++++++++++++++++
> 13 files changed, 3853 insertions(+), 10 deletions(-)
> create mode 100644 Documentation/DocBook/utrace.tmpl
> create mode 100644 include/linux/utrace.h
> create mode 100644 kernel/utrace.c
>
> _______________________________________________
> yocto mailing list
> yocto@yoctoproject.org
> https://lists.yoctoproject.org/listinfo/yocto
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2011-06-16 20:11 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-06-13 14:35 [KERNEL][PATCH] add utrace tom.zanussi
2011-06-13 14:35 ` [KERNEL][PATCH] utrace: support for user space probing/tracing tom.zanussi
2011-06-14 14:30 ` [KERNEL][PATCH] add utrace Bruce Ashfield
2011-06-16 20:11 ` Bruce Ashfield
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.