Commit e637804c authored by Akinobu Mita's avatar Akinobu Mita Committed by David S. Miller

sparc: use bitmap_set()

Use bitmap_set() instead of calling __set_bit() each bit.
Signed-off-by: default avatarAkinobu Mita <akinobu.mita@gmail.com>
Cc: "David S. Miller" <davem@davemloft.net>
Cc: sparclinux@vger.kernel.org
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 2492218c
...@@ -10,7 +10,7 @@ ...@@ -10,7 +10,7 @@
*/ */
#include <linux/string.h> #include <linux/string.h>
#include <linux/bitops.h> #include <linux/bitmap.h>
#include <asm/bitext.h> #include <asm/bitext.h>
...@@ -80,8 +80,7 @@ int bit_map_string_get(struct bit_map *t, int len, int align) ...@@ -80,8 +80,7 @@ int bit_map_string_get(struct bit_map *t, int len, int align)
while (test_bit(offset + i, t->map) == 0) { while (test_bit(offset + i, t->map) == 0) {
i++; i++;
if (i == len) { if (i == len) {
for (i = 0; i < len; i++) bitmap_set(t->map, offset, len);
__set_bit(offset + i, t->map);
if (offset == t->first_free) if (offset == t->first_free)
t->first_free = find_next_zero_bit t->first_free = find_next_zero_bit
(t->map, t->size, (t->map, t->size,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment