diff options
| author | Rasmus Villemoes <[email protected]> | 2014-08-06 23:10:18 +0000 |
|---|---|---|
| committer | Linus Torvalds <[email protected]> | 2014-08-07 01:01:26 +0000 |
| commit | 2ac521d3325a24f01c1f1e86c74537b831d282c5 (patch) | |
| tree | fd89c8c59ad2a864b1b72fbb2b9c8a286c6ccd3c /lib/bitmap.c | |
| parent | lib: bitmap: change parameter of bitmap_*_region to unsigned (diff) | |
| download | kernel-2ac521d3325a24f01c1f1e86c74537b831d282c5.tar.gz kernel-2ac521d3325a24f01c1f1e86c74537b831d282c5.zip | |
lib: bitmap: micro-optimize bitmap_allocate_region
__reg_op(..., REG_OP_ALLOC) always returns 0, so we might as well use that
and save an instruction.
Signed-off-by: Rasmus Villemoes <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
Diffstat (limited to 'lib/bitmap.c')
| -rw-r--r-- | lib/bitmap.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/bitmap.c b/lib/bitmap.c index c2f3807b3601..faaf7206d4cf 100644 --- a/lib/bitmap.c +++ b/lib/bitmap.c @@ -1154,8 +1154,7 @@ int bitmap_allocate_region(unsigned long *bitmap, unsigned int pos, int order) { if (!__reg_op(bitmap, pos, order, REG_OP_ISFREE)) return -EBUSY; - __reg_op(bitmap, pos, order, REG_OP_ALLOC); - return 0; + return __reg_op(bitmap, pos, order, REG_OP_ALLOC); } EXPORT_SYMBOL(bitmap_allocate_region); |
