diff options
Diffstat (limited to 'fs/libfs.c')
-rw-r--r-- | fs/libfs.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/libfs.c b/fs/libfs.c index 18d08f5db53a..f86ec27a4230 100644 --- a/fs/libfs.c +++ b/fs/libfs.c | |||
@@ -68,7 +68,7 @@ struct dentry *simple_lookup(struct inode *dir, struct dentry *dentry, struct na | |||
68 | 68 | ||
69 | int dcache_dir_open(struct inode *inode, struct file *file) | 69 | int dcache_dir_open(struct inode *inode, struct file *file) |
70 | { | 70 | { |
71 | static struct qstr cursor_name = {.len = 1, .name = "."}; | 71 | static struct qstr cursor_name = QSTR_INIT(".", 1); |
72 | 72 | ||
73 | file->private_data = d_alloc(file->f_path.dentry, &cursor_name); | 73 | file->private_data = d_alloc(file->f_path.dentry, &cursor_name); |
74 | 74 | ||
@@ -225,7 +225,7 @@ struct dentry *mount_pseudo(struct file_system_type *fs_type, char *name, | |||
225 | struct super_block *s = sget(fs_type, NULL, set_anon_super, NULL); | 225 | struct super_block *s = sget(fs_type, NULL, set_anon_super, NULL); |
226 | struct dentry *dentry; | 226 | struct dentry *dentry; |
227 | struct inode *root; | 227 | struct inode *root; |
228 | struct qstr d_name = {.name = name, .len = strlen(name)}; | 228 | struct qstr d_name = QSTR_INIT(name, strlen(name)); |
229 | 229 | ||
230 | if (IS_ERR(s)) | 230 | if (IS_ERR(s)) |
231 | return ERR_CAST(s); | 231 | return ERR_CAST(s); |