aboutsummaryrefslogtreecommitdiffstats
path: root/fs
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@linux-foundation.org>2014-01-28 00:17:55 -0500
committerLinus Torvalds <torvalds@linux-foundation.org>2014-01-28 00:17:55 -0500
commit54c0a4b46150db1571d955d598cd342c9f1d9657 (patch)
treefb5968daa68092779e7db3eb1ccd96829783dfc3 /fs
parent1b17366d695c8ab03f98d0155357e97a427e1dce (diff)
parentc2218e26c0d03c368fff825a6f15b7bb3418dbde (diff)
Merge branch 'akpm' (incoming from Andrew)
Merge misc updates from Andrew Morton: - a few hotfixes - dynamic-debug updates - ipc updates - various other sweepings off the factory floor * akpm: (31 commits) firmware/google: drop 'select EFI' to avoid recursive dependency compat: fix sys_fanotify_mark checkpatch.pl: check for function declarations without arguments mm/migrate.c: fix setting of cpupid on page migration twice against normal page softirq: use const char * const for softirq_to_name, whitespace neatening softirq: convert printks to pr_<level> softirq: use ffs() in __do_softirq() kernel/kexec.c: use vscnprintf() instead of vsnprintf() in vmcoreinfo_append_str() splice: fix unexpected size truncation ipc: fix compat msgrcv with negative msgtyp ipc,msg: document barriers ipc: delete seq_max field in struct ipc_ids ipc: simplify sysvipc_proc_open() return ipc: remove useless return statement ipc: remove braces for single statements ipc: standardize code comments ipc: whitespace cleanup ipc: change kern_ipc_perm.deleted type to bool ipc: introduce ipc_valid_object() helper to sort out IPC_RMID races ipc/sem.c: avoid overflow of semop undo (semadj) value ...
Diffstat (limited to 'fs')
-rw-r--r--fs/notify/fanotify/fanotify_user.c4
-rw-r--r--fs/ocfs2/namei.c2
2 files changed, 3 insertions, 3 deletions
diff --git a/fs/notify/fanotify/fanotify_user.c b/fs/notify/fanotify/fanotify_user.c
index 57d7c083cb4b..1fd66abe5740 100644
--- a/fs/notify/fanotify/fanotify_user.c
+++ b/fs/notify/fanotify/fanotify_user.c
@@ -886,9 +886,9 @@ COMPAT_SYSCALL_DEFINE6(fanotify_mark,
886{ 886{
887 return sys_fanotify_mark(fanotify_fd, flags, 887 return sys_fanotify_mark(fanotify_fd, flags,
888#ifdef __BIG_ENDIAN 888#ifdef __BIG_ENDIAN
889 ((__u64)mask1 << 32) | mask0,
890#else
891 ((__u64)mask0 << 32) | mask1, 889 ((__u64)mask0 << 32) | mask1,
890#else
891 ((__u64)mask1 << 32) | mask0,
892#endif 892#endif
893 dfd, pathname); 893 dfd, pathname);
894} 894}
diff --git a/fs/ocfs2/namei.c b/fs/ocfs2/namei.c
index 4f791f6d27d0..41513a4e98e4 100644
--- a/fs/ocfs2/namei.c
+++ b/fs/ocfs2/namei.c
@@ -948,7 +948,7 @@ leave:
948 ocfs2_free_dir_lookup_result(&orphan_insert); 948 ocfs2_free_dir_lookup_result(&orphan_insert);
949 ocfs2_free_dir_lookup_result(&lookup); 949 ocfs2_free_dir_lookup_result(&lookup);
950 950
951 if (status && (status != -ENOTEMPTY)) 951 if (status && (status != -ENOTEMPTY) && (status != -ENOENT))
952 mlog_errno(status); 952 mlog_errno(status);
953 953
954 return status; 954 return status;