forked from torvalds/linux
-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
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 <[email protected]> CC: Andy Shevchenko <[email protected]> CC: Rasmus Villemoes <[email protected]> Signed-off-by: Yury Norov <[email protected]>
- Loading branch information
Showing
6 changed files
with
530 additions
and
530 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3506,12 +3506,14 @@ R: Andy Shevchenko <[email protected]> | |
R: Rasmus Villemoes <[email protected]> | ||
S: Maintained | ||
F: include/linux/bitfield.h | ||
F: include/linux/bitmap-str.h | ||
F: include/linux/bitmap.h | ||
F: include/linux/bits.h | ||
F: include/linux/cpumask.h | ||
F: include/linux/find.h | ||
F: include/linux/nodemask.h | ||
F: include/vdso/bits.h | ||
F: lib/bitmap-str.c | ||
F: lib/bitmap.c | ||
F: lib/cpumask.c | ||
F: lib/cpumask_kunit.c | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
/* SPDX-License-Identifier: GPL-2.0 */ | ||
#ifndef __LINUX_BITMAP_STR_H | ||
#define __LINUX_BITMAP_STR_H | ||
|
||
int bitmap_parse_user(const char __user *ubuf, unsigned int ulen, unsigned long *dst, int nbits); | ||
int bitmap_print_to_pagebuf(bool list, char *buf, const unsigned long *maskp, int nmaskbits); | ||
extern int bitmap_print_bitmask_to_buf(char *buf, const unsigned long *maskp, | ||
int nmaskbits, loff_t off, size_t count); | ||
extern int bitmap_print_list_to_buf(char *buf, const unsigned long *maskp, | ||
int nmaskbits, loff_t off, size_t count); | ||
int bitmap_parse(const char *buf, unsigned int buflen, unsigned long *dst, int nbits); | ||
int bitmap_parselist(const char *buf, unsigned long *maskp, int nmaskbits); | ||
int bitmap_parselist_user(const char __user *ubuf, unsigned int ulen, | ||
unsigned long *dst, int nbits); | ||
|
||
#endif /* __LINUX_BITMAP_STR_H */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.