aboutsummaryrefslogtreecommitdiffstats
path: root/fs/inode.c
diff options
context:
space:
mode:
authorJonathan Herman <hermanjl@cs.unc.edu>2013-04-19 17:31:52 -0400
committerJonathan Herman <hermanjl@cs.unc.edu>2013-04-19 17:31:52 -0400
commitf70a290e8a889caa905ab7650c696f2bb299be1a (patch)
tree56f0886d839499e9f522f189999024b3e86f9be2 /fs/inode.c
parentfcc9d2e5a6c89d22b8b773a64fb4ad21ac318446 (diff)
parent7ef4a793a624c6e66c16ca1051847f75161f5bec (diff)
Merge branch 'wip-nested-locking' into tegra-nested-lockingwip-nested-locking
Conflicts: Makefile include/linux/fs.h
Diffstat (limited to 'fs/inode.c')
-rw-r--r--fs/inode.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/fs/inode.c b/fs/inode.c
index ec7924696a1..d858c6b9823 100644
--- a/fs/inode.c
+++ b/fs/inode.c
@@ -299,6 +299,8 @@ void inode_init_once(struct inode *inode)
299#ifdef CONFIG_FSNOTIFY 299#ifdef CONFIG_FSNOTIFY
300 INIT_HLIST_HEAD(&inode->i_fsnotify_marks); 300 INIT_HLIST_HEAD(&inode->i_fsnotify_marks);
301#endif 301#endif
302 INIT_LIST_HEAD(&inode->i_obj_list);
303 mutex_init(&inode->i_obj_mutex);
302} 304}
303EXPORT_SYMBOL(inode_init_once); 305EXPORT_SYMBOL(inode_init_once);
304 306