Gitweb:
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=efe44183f6bab5b8acb6a6182d95274978c8abb1
Commit: efe44183f6bab5b8acb6a6182d95274978c8abb1
Parent: 00ec99da43a7c2aed46c6595aa271b84bb1b1462
Author: Denis Cheng <[EMAIL PROTECTED]>
AuthorDate: Tue Nov 13 00:49:42 2007 +0800
Committer: Linus Torvalds <[EMAIL PROTECTED]>
CommitDate: Mon Nov 12 10:32:29 2007 -0800
SLUB: killed the unused "end" variable
Since the macro "for_each_object" introduced, the "end" variable becomes
unused anymore.
Signed-off-by: Denis Cheng <[EMAIL PROTECTED]>
Signed-off-by: Linus Torvalds <[EMAIL PROTECTED]>
---
mm/slub.c | 2 --
1 files changed, 0 insertions(+), 2 deletions(-)
diff --git a/mm/slub.c b/mm/slub.c
index 84f59fd..9acb413 100644
--- a/mm/slub.c
+++ b/mm/slub.c
@@ -1080,7 +1080,6 @@ static struct page *new_slab(struct kmem_cache *s, gfp_t
flags, int node)
struct page *page;
struct kmem_cache_node *n;
void *start;
- void *end;
void *last;
void *p;
@@ -1101,7 +1100,6 @@ static struct page *new_slab(struct kmem_cache *s, gfp_t
flags, int node)
SetSlabDebug(page);
start = page_address(page);
- end = start + s->objects * s->size;
if (unlikely(s->flags & SLAB_POISON))
memset(start, POISON_INUSE, PAGE_SIZE << s->order);
-
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at http://vger.kernel.org/majordomo-info.html