projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
cbab0e4
)
fs/ocfs2/namei.c: remove unecessary ERROR when removing non-empty directory
author
Goldwyn Rodrigues
<
[email protected]
>
Wed, 12 Jun 2013 21:04:51 +0000
(14:04 -0700)
committer
Linus Torvalds
<
[email protected]
>
Wed, 12 Jun 2013 23:29:45 +0000
(16:29 -0700)
While removing a non-empty directory, the kernel dumps a message:
(rmdir,21743,1):ocfs2_unlink:953 ERROR: status = -39
Suppress the error message from being printed in the dmesg so users
don't panic.
Signed-off-by: Goldwyn Rodrigues <
[email protected]
>
Cc: Mark Fasheh <
[email protected]
>
Cc: Joel Becker <
[email protected]
>
Acked-by: Sunil Mushran <
[email protected]
>
Reviewed-by: Jie Liu <
[email protected]
>
Signed-off-by: Andrew Morton <
[email protected]
>
Signed-off-by: Linus Torvalds <
[email protected]
>
fs/ocfs2/namei.c
patch
|
blob
|
history
diff --git
a/fs/ocfs2/namei.c
b/fs/ocfs2/namei.c
index b563351753f1963932b943ff961472af453be2af..b4a5cdf9dbc57339b29530b343b5a582bcb39e36 100644
(file)
--- a/
fs/ocfs2/namei.c
+++ b/
fs/ocfs2/namei.c
@@
-947,7
+947,7
@@
leave:
ocfs2_free_dir_lookup_result(&orphan_insert);
ocfs2_free_dir_lookup_result(&lookup);
- if (status)
+ if (status
&& (status != -ENOTEMPTY)
)
mlog_errno(status);
return status;