diff options
Diffstat (limited to 'fs/super.c')
| -rw-r--r-- | fs/super.c | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/fs/super.c b/fs/super.c index 9b780c42d845..6d4e8174b6db 100644 --- a/fs/super.c +++ b/fs/super.c | |||
| @@ -53,7 +53,7 @@ DEFINE_SPINLOCK(sb_lock); | |||
| 53 | * Allocates and initializes a new &struct super_block. alloc_super() | 53 | * Allocates and initializes a new &struct super_block. alloc_super() |
| 54 | * returns a pointer new superblock or %NULL if allocation had failed. | 54 | * returns a pointer new superblock or %NULL if allocation had failed. |
| 55 | */ | 55 | */ |
| 56 | static struct super_block *alloc_super(void) | 56 | static struct super_block *alloc_super(struct file_system_type *type) |
| 57 | { | 57 | { |
| 58 | struct super_block *s = kzalloc(sizeof(struct super_block), GFP_USER); | 58 | struct super_block *s = kzalloc(sizeof(struct super_block), GFP_USER); |
| 59 | static struct super_operations default_op; | 59 | static struct super_operations default_op; |
| @@ -72,6 +72,13 @@ static struct super_block *alloc_super(void) | |||
| 72 | INIT_LIST_HEAD(&s->s_inodes); | 72 | INIT_LIST_HEAD(&s->s_inodes); |
| 73 | init_rwsem(&s->s_umount); | 73 | init_rwsem(&s->s_umount); |
| 74 | mutex_init(&s->s_lock); | 74 | mutex_init(&s->s_lock); |
| 75 | lockdep_set_class(&s->s_umount, &type->s_umount_key); | ||
| 76 | /* | ||
| 77 | * The locking rules for s_lock are up to the | ||
| 78 | * filesystem. For example ext3fs has different | ||
| 79 | * lock ordering than usbfs: | ||
| 80 | */ | ||
| 81 | lockdep_set_class(&s->s_lock, &type->s_lock_key); | ||
| 75 | down_write(&s->s_umount); | 82 | down_write(&s->s_umount); |
| 76 | s->s_count = S_BIAS; | 83 | s->s_count = S_BIAS; |
| 77 | atomic_set(&s->s_active, 1); | 84 | atomic_set(&s->s_active, 1); |
| @@ -295,7 +302,7 @@ retry: | |||
| 295 | } | 302 | } |
| 296 | if (!s) { | 303 | if (!s) { |
| 297 | spin_unlock(&sb_lock); | 304 | spin_unlock(&sb_lock); |
| 298 | s = alloc_super(); | 305 | s = alloc_super(type); |
| 299 | if (!s) | 306 | if (!s) |
| 300 | return ERR_PTR(-ENOMEM); | 307 | return ERR_PTR(-ENOMEM); |
| 301 | goto retry; | 308 | goto retry; |
