diff options
author | Jonathan Herman <hermanjl@cs.unc.edu> | 2013-04-19 17:31:52 -0400 |
---|---|---|
committer | Jonathan Herman <hermanjl@cs.unc.edu> | 2013-04-19 17:31:52 -0400 |
commit | f70a290e8a889caa905ab7650c696f2bb299be1a (patch) | |
tree | 56f0886d839499e9f522f189999024b3e86f9be2 /fs/inode.c | |
parent | fcc9d2e5a6c89d22b8b773a64fb4ad21ac318446 (diff) | |
parent | 7ef4a793a624c6e66c16ca1051847f75161f5bec (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.c | 2 |
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 | } |
303 | EXPORT_SYMBOL(inode_init_once); | 305 | EXPORT_SYMBOL(inode_init_once); |
304 | 306 | ||