aboutsummaryrefslogtreecommitdiffstats
path: root/kernel/kmod.c
diff options
context:
space:
mode:
Diffstat (limited to 'kernel/kmod.c')
-rw-r--r--kernel/kmod.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/kernel/kmod.c b/kernel/kmod.c
index ad9f2edebd67..6e9b19667a8d 100644
--- a/kernel/kmod.c
+++ b/kernel/kmod.c
@@ -235,10 +235,10 @@ static void __call_usermodehelper(struct work_struct *work)
235 case UMH_WAIT_PROC: 235 case UMH_WAIT_PROC:
236 if (pid > 0) 236 if (pid > 0)
237 break; 237 break;
238 sub_info->retval = pid;
239 /* FALLTHROUGH */ 238 /* FALLTHROUGH */
240
241 case UMH_WAIT_EXEC: 239 case UMH_WAIT_EXEC:
240 if (pid < 0)
241 sub_info->retval = pid;
242 complete(sub_info->complete); 242 complete(sub_info->complete);
243 } 243 }
244} 244}