aboutsummaryrefslogtreecommitdiff
path: root/modutils/modutils.c
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2015-10-24 04:17:04 +0200
committerDenys Vlasenko <vda.linux@googlemail.com>2015-10-24 04:17:04 +0200
commitcd13974b201972ffb605e243f63f674e95b99e5c (patch)
treecbc62c9de34aab6065d76074e4369903b98f679b /modutils/modutils.c
parent2e9a0662bce58b0fe838f7e1e03c35c4765ff3bc (diff)
downloadbusybox-w32-cd13974b201972ffb605e243f63f674e95b99e5c.tar.gz
busybox-w32-cd13974b201972ffb605e243f63f674e95b99e5c.tar.bz2
busybox-w32-cd13974b201972ffb605e243f63f674e95b99e5c.zip
rmmod: fix bad error message
Before: ># busybox_old rmmod gtrhfhdfghdf rmmod: can't unload 'gtrhfhdfghdf': unknown symbol in module, or unknown parameter After: ># busybox rmmod gtrhfhdfghdf rmmod: can't unload module 'gtrhfhdfghdf': No such file or directory function old new delta modprobe_main 726 721 -5 do_modprobe 599 590 -9 rmmod_main 187 169 -18 ------------------------------------------------------------------------------ (add/remove: 0/0 grow/shrink: 0/3 up/down: 0/-32) Total: -32 bytes Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'modutils/modutils.c')
-rw-r--r--modutils/modutils.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/modutils/modutils.c b/modutils/modutils.c
index 84300d931..ef4134af5 100644
--- a/modutils/modutils.c
+++ b/modutils/modutils.c
@@ -190,6 +190,11 @@ int FAST_FUNC bb_delete_module(const char *module, unsigned int flags)
190 return errno; 190 return errno;
191} 191}
192 192
193/* Note: not suitable for delete_module() errnos.
194 * For them, probably only EWOULDBLOCK needs explaining:
195 * "Other modules depend on us". So far we don't do such
196 * translation and don't use moderror() for removal errors.
197 */
193const char* FAST_FUNC moderror(int err) 198const char* FAST_FUNC moderror(int err)
194{ 199{
195 switch (err) { 200 switch (err) {