lib/bitmap: split-out string-related operations to a separate files
lib/bitmap.c and corresponding include/linux/bitmap.h are intended to
hold functions related to operations on bitmaps, like bitmap_shift or
bitmap_set. Historically, some string-related operations like
bitmap_parse are also reside in lib/bitmap.c.
Now that the subsystem evolves, string-related bitmap operations became a
significant part of the file. Because they are quite different from the
other bitmap functions by nature, it's worth to split them to a separate
source/header files.
CC: Andrew Morton <akpm@linux-foundation.org>
CC: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
CC: Rasmus Villemoes <linux@rasmusvillemoes.dk>
Signed-off-by:
Yury Norov <yury.norov@gmail.com>
Showing
- MAINTAINERS 2 additions, 0 deletionsMAINTAINERS
- include/linux/bitmap-str.h 16 additions, 0 deletionsinclude/linux/bitmap-str.h
- include/linux/bitmap.h 1 addition, 17 deletionsinclude/linux/bitmap.h
- lib/Makefile 1 addition, 1 deletionlib/Makefile
- lib/bitmap-str.c 510 additions, 0 deletionslib/bitmap-str.c
- lib/bitmap.c 0 additions, 512 deletionslib/bitmap.c
Please register or sign in to comment