aboutsummaryrefslogtreecommitdiffstats
path: root/kernel/kmod.c
diff options
context:
space:
mode:
Diffstat (limited to 'kernel/kmod.c')
-rw-r--r--kernel/kmod.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/kernel/kmod.c b/kernel/kmod.c
index 7dc7a9dad6ac..8d2bea09a4ec 100644
--- a/kernel/kmod.c
+++ b/kernel/kmod.c
@@ -311,14 +311,14 @@ int call_usermodehelper_pipe(char *path, char **argv, char **envp,
311 return 0; 311 return 0;
312 312
313 f = create_write_pipe(); 313 f = create_write_pipe();
314 if (!f) 314 if (IS_ERR(f))
315 return -ENOMEM; 315 return PTR_ERR(f);
316 *filp = f; 316 *filp = f;
317 317
318 f = create_read_pipe(f); 318 f = create_read_pipe(f);
319 if (!f) { 319 if (IS_ERR(f)) {
320 free_write_pipe(*filp); 320 free_write_pipe(*filp);
321 return -ENOMEM; 321 return PTR_ERR(f);
322 } 322 }
323 sub_info.stdin = f; 323 sub_info.stdin = f;
324 324