vfs: Apply lockdep-based checking to rcu_dereference() uses
[pandora-kernel.git] / include / linux / fdtable.h
index a2ec74b..144412f 100644 (file)
@@ -57,7 +57,11 @@ struct files_struct {
        struct file * fd_array[NR_OPEN_DEFAULT];
 };
 
-#define files_fdtable(files) (rcu_dereference((files)->fdt))
+#define files_fdtable(files) \
+       (rcu_dereference_check((files)->fdt, \
+                              rcu_read_lock_held() || \
+                              lockdep_is_held(&(files)->file_lock) || \
+                              atomic_read(&files->count) == 1))
 
 struct file_operations;
 struct vfsmount;
@@ -78,7 +82,7 @@ static inline struct file * fcheck_files(struct files_struct *files, unsigned in
        struct fdtable *fdt = files_fdtable(files);
 
        if (fd < fdt->max_fds)
-               file = rcu_dereference(fdt->fd[fd]);
+               file = rcu_dereference_check(fdt->fd[fd], rcu_read_lock_held() || lockdep_is_held(&files->file_lock) || atomic_read(&files->count) == 1);
        return file;
 }