diff options
author | Eric Andersen <andersen@codepoet.org> | 2004-03-19 21:00:03 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2004-03-19 21:00:03 +0000 |
commit | 1daa0c609712e25a3a4dcd002f066a13dd8fb7ba (patch) | |
tree | d208a343ac18fc2eaef1dd08698fd6a90490670e | |
parent | 9e458f5b7a3a8c96dd801f8bdfcba5c8f67991ab (diff) |
As noted in a patch from Kendrick Hamilton, rmmod was only
half way converted, and still used the old delete_module(),
call rather than a syscall, in one spot.
-rw-r--r-- | modutils/rmmod.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/modutils/rmmod.c b/modutils/rmmod.c index cc9742c0a..c83904551 100644 --- a/modutils/rmmod.c +++ b/modutils/rmmod.c @@ -29,9 +29,6 @@ #include <sys/syscall.h> #include "busybox.h" -extern int delete_module(const char * name); - - extern int rmmod_main(int argc, char **argv) { int n, ret = EXIT_SUCCESS; @@ -55,7 +52,7 @@ extern int rmmod_main(int argc, char **argv) /* until the number of modules does not change */ buf = xmalloc(bufsize = 256); while (nmod != pnmod) { - if (delete_module(NULL)) + if (syscall(__NR_delete_module, NULL, flags) < 0) bb_perror_msg_and_die("rmmod"); pnmod = nmod; /* 1 == QM_MODULES */ |