diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2019-06-09 23:20:49 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2019-06-09 23:20:49 +0200 |
commit | 3b69ba799fd302a781f2ec760909f340e3b90236 (patch) | |
tree | 37f2545a39600dcbc45a65903ef8b0ca7679a5d6 /include | |
parent | 7b6d4f50c97b4f375687e8216313b10598b44b49 (diff) | |
download | busybox-w32-3b69ba799fd302a781f2ec760909f340e3b90236.tar.gz busybox-w32-3b69ba799fd302a781f2ec760909f340e3b90236.tar.bz2 busybox-w32-3b69ba799fd302a781f2ec760909f340e3b90236.zip |
mount,losetup: use /dev/loop-control is it exists
function old new delta
get_free_loop - 58 +58
set_loop 597 649 +52
losetup_main 482 476 -6
------------------------------------------------------------------------------
(add/remove: 1/0 grow/shrink: 1/1 up/down: 110/-6) Total: 104 bytes
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/libbb.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/include/libbb.h b/include/libbb.h index 100d6b606..021100db1 100644 --- a/include/libbb.h +++ b/include/libbb.h | |||
@@ -1461,14 +1461,15 @@ extern void bb_warn_ignoring_args(char *arg) FAST_FUNC; | |||
1461 | 1461 | ||
1462 | extern int get_linux_version_code(void) FAST_FUNC; | 1462 | extern int get_linux_version_code(void) FAST_FUNC; |
1463 | 1463 | ||
1464 | extern char *query_loop(const char *device) FAST_FUNC; | 1464 | char *query_loop(const char *device) FAST_FUNC; |
1465 | extern int del_loop(const char *device) FAST_FUNC; | 1465 | int get_free_loop(void) FAST_FUNC; |
1466 | int del_loop(const char *device) FAST_FUNC; | ||
1466 | /* | 1467 | /* |
1467 | * If *devname is not NULL, use that name, otherwise try to find free one, | 1468 | * If *devname is not NULL, use that name, otherwise try to find free one, |
1468 | * malloc and return it in *devname. | 1469 | * malloc and return it in *devname. |
1469 | * return value is the opened fd to the loop device, or < on error | 1470 | * return value is the opened fd to the loop device, or < on error |
1470 | */ | 1471 | */ |
1471 | extern int set_loop(char **devname, const char *file, unsigned long long offset, unsigned flags) FAST_FUNC; | 1472 | int set_loop(char **devname, const char *file, unsigned long long offset, unsigned flags) FAST_FUNC; |
1472 | /* These constants match linux/loop.h (without BB_ prefix): */ | 1473 | /* These constants match linux/loop.h (without BB_ prefix): */ |
1473 | #define BB_LO_FLAGS_READ_ONLY 1 | 1474 | #define BB_LO_FLAGS_READ_ONLY 1 |
1474 | #define BB_LO_FLAGS_AUTOCLEAR 4 | 1475 | #define BB_LO_FLAGS_AUTOCLEAR 4 |