All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/1] remove lttng-syscalls patch from lttng-modules
@ 2012-10-26 16:21 tom.zanussi
  2012-10-26 16:21 ` [PATCH 1/1] lttng-modules: remove unused lttng-syscalls patch tom.zanussi
  2012-10-28  1:21 ` [PATCH 0/1] remove lttng-syscalls patch from lttng-modules Saul Wold
  0 siblings, 2 replies; 3+ messages in thread
From: tom.zanussi @ 2012-10-26 16:21 UTC (permalink / raw)
  To: openembedded-core

From: Tom Zanussi <tom.zanussi@intel.com>

This removes a no-longer-used patch from lttng-modules.

The following changes since commit 511f7f9d0422fe1a896361b53179c9f642c1fc0b:

  zeroconf: remove (2012-10-26 14:12:55 +0100)

are available in the git repository at:

  git://git.yoctoproject.org/poky-contrib.git tzanussi/lttng-modules-remove-syscalls-patch
  http://git.yoctoproject.org/cgit/cgit.cgi/poky-contrib/log/?h=tzanussi/lttng-modules-remove-syscalls-patch

Tom Zanussi (1):
  lttng-modules: remove unused lttng-syscalls patch

 ...ls-protect-is_compat_task-from-redefiniti.patch | 41 ----------------------
 1 file changed, 41 deletions(-)
 delete mode 100644 meta/recipes-kernel/lttng-2.0/lttng-modules/lttng-sycalls-protect-is_compat_task-from-redefiniti.patch

-- 
1.7.11.4




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

* [PATCH 1/1] lttng-modules: remove unused lttng-syscalls patch
  2012-10-26 16:21 [PATCH 0/1] remove lttng-syscalls patch from lttng-modules tom.zanussi
@ 2012-10-26 16:21 ` tom.zanussi
  2012-10-28  1:21 ` [PATCH 0/1] remove lttng-syscalls patch from lttng-modules Saul Wold
  1 sibling, 0 replies; 3+ messages in thread
From: tom.zanussi @ 2012-10-26 16:21 UTC (permalink / raw)
  To: openembedded-core

From: Tom Zanussi <tom.zanussi@intel.com>

commit b7e184508 (lttng-2.0: fix srcrev/pv to match the recipe
filenames) removed the
lttng-sycalls-protect-is_compat_task-from-redefiniti.patch from the
SRC_URI but forgot to remove the patch itself.

Signed-off-by: Tom Zanussi <tom.zanussi@intel.com>
---
 ...ls-protect-is_compat_task-from-redefiniti.patch | 41 ----------------------
 1 file changed, 41 deletions(-)
 delete mode 100644 meta/recipes-kernel/lttng-2.0/lttng-modules/lttng-sycalls-protect-is_compat_task-from-redefiniti.patch

diff --git a/meta/recipes-kernel/lttng-2.0/lttng-modules/lttng-sycalls-protect-is_compat_task-from-redefiniti.patch b/meta/recipes-kernel/lttng-2.0/lttng-modules/lttng-sycalls-protect-is_compat_task-from-redefiniti.patch
deleted file mode 100644
index 0056633..0000000
--- a/meta/recipes-kernel/lttng-2.0/lttng-modules/lttng-sycalls-protect-is_compat_task-from-redefiniti.patch
+++ /dev/null
@@ -1,41 +0,0 @@
-From 415a1a678cb2fcf603f9777f2c7b71c1e38f8101 Mon Sep 17 00:00:00 2001
-From: Bruce Ashfield <bruce.ashfield@windriver.com>
-Date: Mon, 19 Mar 2012 13:30:31 -0400
-Subject: [PATCH] lttng-sycalls: protect is_compat_task from redefinition
-
-recent -stable kernels have their own fallback definition of is_compat_task
-
-   #define is_compat_task() (0)
-
-To protect against this double definition of is_compat_task we can check
-to see if it is already defined, and skip the lttng variant.
-
-Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
----
- lttng-syscalls.c |    4 ++++
- 1 files changed, 4 insertions(+), 0 deletions(-)
-
-diff --git a/lttng-syscalls.c b/lttng-syscalls.c
-index 9de3c07..80d0f05 100644
---- a/lttng-syscalls.c
-+++ b/lttng-syscalls.c
-@@ -17,12 +17,16 @@
- #include "ltt-events.h"
- 
- #ifndef CONFIG_COMPAT
-+
-+#ifndef is_compat_task
- static inline int is_compat_task(void)
- {
- 	return 0;
- }
- #endif
- 
-+#endif
-+
- static
- void syscall_entry_probe(void *__data, struct pt_regs *regs, long id);
- 
--- 
-1.7.5.4
-
-- 
1.7.11.4




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

* Re: [PATCH 0/1] remove lttng-syscalls patch from lttng-modules
  2012-10-26 16:21 [PATCH 0/1] remove lttng-syscalls patch from lttng-modules tom.zanussi
  2012-10-26 16:21 ` [PATCH 1/1] lttng-modules: remove unused lttng-syscalls patch tom.zanussi
@ 2012-10-28  1:21 ` Saul Wold
  1 sibling, 0 replies; 3+ messages in thread
From: Saul Wold @ 2012-10-28  1:21 UTC (permalink / raw)
  To: tom.zanussi; +Cc: openembedded-core

On 10/26/2012 09:21 AM, tom.zanussi@intel.com wrote:
> From: Tom Zanussi <tom.zanussi@intel.com>
>
> This removes a no-longer-used patch from lttng-modules.
>
> The following changes since commit 511f7f9d0422fe1a896361b53179c9f642c1fc0b:
>
>    zeroconf: remove (2012-10-26 14:12:55 +0100)
>
> are available in the git repository at:
>
>    git://git.yoctoproject.org/poky-contrib.git tzanussi/lttng-modules-remove-syscalls-patch
>    http://git.yoctoproject.org/cgit/cgit.cgi/poky-contrib/log/?h=tzanussi/lttng-modules-remove-syscalls-patch
>
> Tom Zanussi (1):
>    lttng-modules: remove unused lttng-syscalls patch
>
>   ...ls-protect-is_compat_task-from-redefiniti.patch | 41 ----------------------
>   1 file changed, 41 deletions(-)
>   delete mode 100644 meta/recipes-kernel/lttng-2.0/lttng-modules/lttng-sycalls-protect-is_compat_task-from-redefiniti.patch
>
Merged into OE-Core

Thanks
	Sau!




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

end of thread, other threads:[~2012-10-28  1:34 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-10-26 16:21 [PATCH 0/1] remove lttng-syscalls patch from lttng-modules tom.zanussi
2012-10-26 16:21 ` [PATCH 1/1] lttng-modules: remove unused lttng-syscalls patch tom.zanussi
2012-10-28  1:21 ` [PATCH 0/1] remove lttng-syscalls patch from lttng-modules Saul Wold

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.