diff options
author | Christoph Lameter <clameter@sgi.com> | 2007-07-17 07:03:29 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-07-17 13:23:02 -0400 |
commit | 94f6030ca792c57422f04a73e7a872d8325946d3 (patch) | |
tree | 0197f24d82b1706f1b0521f2cf68feeff64123df /block/elevator.c | |
parent | 81cda6626178cd55297831296ba8ecedbfd8b52d (diff) |
Slab allocators: Replace explicit zeroing with __GFP_ZERO
kmalloc_node() and kmem_cache_alloc_node() were not available in a zeroing
variant in the past. But with __GFP_ZERO it is possible now to do zeroing
while allocating.
Use __GFP_ZERO to remove the explicit clearing of memory via memset whereever
we can.
Signed-off-by: Christoph Lameter <clameter@sgi.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'block/elevator.c')
-rw-r--r-- | block/elevator.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/block/elevator.c b/block/elevator.c index 4769a25d7037..d265963d1ed3 100644 --- a/block/elevator.c +++ b/block/elevator.c | |||
@@ -177,11 +177,10 @@ static elevator_t *elevator_alloc(request_queue_t *q, struct elevator_type *e) | |||
177 | elevator_t *eq; | 177 | elevator_t *eq; |
178 | int i; | 178 | int i; |
179 | 179 | ||
180 | eq = kmalloc_node(sizeof(elevator_t), GFP_KERNEL, q->node); | 180 | eq = kmalloc_node(sizeof(elevator_t), GFP_KERNEL | __GFP_ZERO, q->node); |
181 | if (unlikely(!eq)) | 181 | if (unlikely(!eq)) |
182 | goto err; | 182 | goto err; |
183 | 183 | ||
184 | memset(eq, 0, sizeof(*eq)); | ||
185 | eq->ops = &e->ops; | 184 | eq->ops = &e->ops; |
186 | eq->elevator_type = e; | 185 | eq->elevator_type = e; |
187 | kobject_init(&eq->kobj); | 186 | kobject_init(&eq->kobj); |