All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] SLQB: Use _RET_IP_ instead of __builtin_return_address(0)
@ 2009-05-03 12:14 Pekka J Enberg
  2009-05-03 12:19 ` Robert P. J. Day
  2009-05-05  8:22 ` Nick Piggin
  0 siblings, 2 replies; 4+ messages in thread
From: Pekka J Enberg @ 2009-05-03 12:14 UTC (permalink / raw)
  To: npiggin; +Cc: linux-kernel

From: Pekka Enberg <penberg@cs.helsinki.fi>

This patch changes SLQB to use the shorter _RET_IP_ form for consistency
with SLUB and to prepare SQLB for eventual kmemtrace hooks.

Cc: Nick Piggin <npiggin@suse.de>
Signed-off-by: Pekka Enberg <penberg@cs.helsinki.fi>
---
 mm/slqb.c |   28 ++++++++++++++--------------
 1 files changed, 14 insertions(+), 14 deletions(-)

diff --git a/mm/slqb.c b/mm/slqb.c
index 474fd2f..f538f2c 100644
--- a/mm/slqb.c
+++ b/mm/slqb.c
@@ -246,7 +246,7 @@ static LIST_HEAD(slab_caches);
  * Tracking user of a slab.
  */
 struct track {
-	void *addr;		/* Called from address */
+	unsigned long addr;	/* Called from address */
 	int cpu;		/* Was running on cpu */
 	int pid;		/* Pid context */
 	unsigned long when;	/* When did the operation occur */
@@ -385,7 +385,7 @@ static struct track *get_track(struct kmem_cache *s, void *object,
 }
 
 static void set_track(struct kmem_cache *s, void *object,
-				enum track_item alloc, void *addr)
+				enum track_item alloc, unsigned long addr)
 {
 	struct track *p;
 
@@ -409,8 +409,8 @@ static void init_tracking(struct kmem_cache *s, void *object)
 	if (!(s->flags & SLAB_STORE_USER))
 		return;
 
-	set_track(s, object, TRACK_FREE, NULL);
-	set_track(s, object, TRACK_ALLOC, NULL);
+	set_track(s, object, TRACK_FREE, 0UL);
+	set_track(s, object, TRACK_ALLOC, 0UL);
 }
 
 static void print_track(const char *s, struct track *t)
@@ -753,7 +753,7 @@ static void setup_object_debug(struct kmem_cache *s, struct slqb_page *page,
 }
 
 static int alloc_debug_processing(struct kmem_cache *s,
-					void *object, void *addr)
+					void *object, unsigned long addr)
 {
 	struct slqb_page *page;
 	page = virt_to_head_slqb_page(object);
@@ -781,7 +781,7 @@ bad:
 }
 
 static int free_debug_processing(struct kmem_cache *s,
-					void *object, void *addr)
+					void *object, unsigned long addr)
 {
 	struct slqb_page *page;
 	page = virt_to_head_slqb_page(object);
@@ -1528,7 +1528,7 @@ try_remote:
  * (debug checking and memset()ing).
  */
 static __always_inline void *slab_alloc(struct kmem_cache *s,
-				gfp_t gfpflags, int node, void *addr)
+				gfp_t gfpflags, int node, unsigned long addr)
 {
 	void *object;
 	unsigned long flags;
@@ -1550,7 +1550,7 @@ again:
 }
 
 static __always_inline void *__kmem_cache_alloc(struct kmem_cache *s,
-				gfp_t gfpflags, void *caller)
+				gfp_t gfpflags, unsigned long caller)
 {
 	int node = -1;
 #ifdef CONFIG_NUMA
@@ -1562,14 +1562,14 @@ static __always_inline void *__kmem_cache_alloc(struct kmem_cache *s,
 
 void *kmem_cache_alloc(struct kmem_cache *s, gfp_t gfpflags)
 {
-	return __kmem_cache_alloc(s, gfpflags, __builtin_return_address(0));
+	return __kmem_cache_alloc(s, gfpflags, _RET_IP_);
 }
 EXPORT_SYMBOL(kmem_cache_alloc);
 
 #ifdef CONFIG_NUMA
 void *kmem_cache_alloc_node(struct kmem_cache *s, gfp_t gfpflags, int node)
 {
-	return slab_alloc(s, gfpflags, node, __builtin_return_address(0));
+	return slab_alloc(s, gfpflags, node, _RET_IP_);
 }
 EXPORT_SYMBOL(kmem_cache_alloc_node);
 #endif
@@ -1757,7 +1757,7 @@ static __always_inline void slab_free(struct kmem_cache *s,
 
 	debug_check_no_locks_freed(object, s->objsize);
 	if (likely(object) && unlikely(slab_debug(s))) {
-		if (unlikely(!free_debug_processing(s, object, __builtin_return_address(0))))
+		if (unlikely(!free_debug_processing(s, object, _RET_IP_)))
 			return;
 	}
 
@@ -2528,7 +2528,7 @@ void *__kmalloc(size_t size, gfp_t flags)
 	if (unlikely(ZERO_OR_NULL_PTR(s)))
 		return s;
 
-	return __kmem_cache_alloc(s, flags, __builtin_return_address(0));
+	return __kmem_cache_alloc(s, flags, _RET_IP_);
 }
 EXPORT_SYMBOL(__kmalloc);
 
@@ -3124,7 +3124,7 @@ void *__kmalloc_track_caller(size_t size, gfp_t flags, unsigned long caller)
 	if (unlikely(current->flags & (PF_SPREAD_SLAB | PF_MEMPOLICY)))
 		node = alternate_nid(s, flags, node);
 #endif
-	return slab_alloc(s, flags, node, (void *)caller);
+	return slab_alloc(s, flags, node, caller);
 }
 
 void *__kmalloc_node_track_caller(size_t size, gfp_t flags, int node,
@@ -3136,7 +3136,7 @@ void *__kmalloc_node_track_caller(size_t size, gfp_t flags, int node,
 	if (unlikely(ZERO_OR_NULL_PTR(s)))
 		return s;
 
-	return slab_alloc(s, flags, node, (void *)caller);
+	return slab_alloc(s, flags, node, caller);
 }
 #endif
 
-- 
1.5.6.3


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

* Re: [PATCH] SLQB: Use _RET_IP_ instead of __builtin_return_address(0)
  2009-05-03 12:14 [PATCH] SLQB: Use _RET_IP_ instead of __builtin_return_address(0) Pekka J Enberg
@ 2009-05-03 12:19 ` Robert P. J. Day
  2009-05-03 12:22   ` Robert P. J. Day
  2009-05-05  8:22 ` Nick Piggin
  1 sibling, 1 reply; 4+ messages in thread
From: Robert P. J. Day @ 2009-05-03 12:19 UTC (permalink / raw)
  To: Pekka J Enberg; +Cc: npiggin, Linux Kernel Mailing List

On Sun, 3 May 2009, Pekka J Enberg wrote:

> From: Pekka Enberg <penberg@cs.helsinki.fi>
>
> This patch changes SLQB to use the shorter _RET_IP_ form for consistency
> with SLUB and to prepare SQLB for eventual kmemtrace hooks.

... big snip ...

>  void *kmem_cache_alloc(struct kmem_cache *s, gfp_t gfpflags)
>  {
> -	return __kmem_cache_alloc(s, gfpflags, __builtin_return_address(0));
> +	return __kmem_cache_alloc(s, gfpflags, _RET_IP_);
>  }

  since i originally pointed out this possible simplification, i might
as well also point out that the above is not necessarily correct.  in
include/linux/kernel.h:

#define _RET_IP_   (unsigned long)__builtin_return_address(0)

as in, _RET_IP_ represents the **(unsigned long)** cast of that
(void*) value.  so, technically, that's not merely an aesthetic
replacement.  is that still what you wanted?

rday
--

========================================================================
Robert P. J. Day                               Waterloo, Ontario, CANADA

        Linux Consulting, Training and Annoying Kernel Pedantry.

Web page:                                          http://crashcourse.ca
Linked In:                             http://www.linkedin.com/in/rpjday
Twitter:                                       http://twitter.com/rpjday
========================================================================

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

* Re: [PATCH] SLQB: Use _RET_IP_ instead of __builtin_return_address(0)
  2009-05-03 12:19 ` Robert P. J. Day
@ 2009-05-03 12:22   ` Robert P. J. Day
  0 siblings, 0 replies; 4+ messages in thread
From: Robert P. J. Day @ 2009-05-03 12:22 UTC (permalink / raw)
  To: Pekka J Enberg; +Cc: npiggin, Linux Kernel Mailing List

On Sun, 3 May 2009, Robert P. J. Day wrote:

> On Sun, 3 May 2009, Pekka J Enberg wrote:
>
> > From: Pekka Enberg <penberg@cs.helsinki.fi>
> >
> > This patch changes SLQB to use the shorter _RET_IP_ form for consistency
> > with SLUB and to prepare SQLB for eventual kmemtrace hooks.
>
> ... big snip ...
>
> >  void *kmem_cache_alloc(struct kmem_cache *s, gfp_t gfpflags)
> >  {
> > -	return __kmem_cache_alloc(s, gfpflags, __builtin_return_address(0));
> > +	return __kmem_cache_alloc(s, gfpflags, _RET_IP_);
> >  }
>
>   since i originally pointed out this possible simplification, i might
> as well also point out that the above is not necessarily correct.  in
> include/linux/kernel.h:
>
> #define _RET_IP_   (unsigned long)__builtin_return_address(0)
>
> as in, _RET_IP_ represents the **(unsigned long)** cast of that
> (void*) value.  so, technically, that's not merely an aesthetic
> replacement.  is that still what you wanted?

  whoops, never mind, i didn't read far enough to notice you were
making that change throughout the code.  carry on.

rday
--

========================================================================
Robert P. J. Day                               Waterloo, Ontario, CANADA

        Linux Consulting, Training and Annoying Kernel Pedantry.

Web page:                                          http://crashcourse.ca
Linked In:                             http://www.linkedin.com/in/rpjday
Twitter:                                       http://twitter.com/rpjday
========================================================================

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

* Re: [PATCH] SLQB: Use _RET_IP_ instead of __builtin_return_address(0)
  2009-05-03 12:14 [PATCH] SLQB: Use _RET_IP_ instead of __builtin_return_address(0) Pekka J Enberg
  2009-05-03 12:19 ` Robert P. J. Day
@ 2009-05-05  8:22 ` Nick Piggin
  1 sibling, 0 replies; 4+ messages in thread
From: Nick Piggin @ 2009-05-05  8:22 UTC (permalink / raw)
  To: Pekka J Enberg; +Cc: linux-kernel

On Sun, May 03, 2009 at 03:14:32PM +0300, Pekka Enberg wrote:
> From: Pekka Enberg <penberg@cs.helsinki.fi>
> 
> This patch changes SLQB to use the shorter _RET_IP_ form for consistency
> with SLUB and to prepare SQLB for eventual kmemtrace hooks.
> 
> Cc: Nick Piggin <npiggin@suse.de>
> Signed-off-by: Pekka Enberg <penberg@cs.helsinki.fi>

Ack, thanks.


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

end of thread, other threads:[~2009-05-05  8:23 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2009-05-03 12:14 [PATCH] SLQB: Use _RET_IP_ instead of __builtin_return_address(0) Pekka J Enberg
2009-05-03 12:19 ` Robert P. J. Day
2009-05-03 12:22   ` Robert P. J. Day
2009-05-05  8:22 ` Nick Piggin

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.