diff options
author | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2016-06-20 11:25:44 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2016-06-20 11:25:44 -0400 |
commit | af52739b922f656eb1f39016fabaabe4baeda2e2 (patch) | |
tree | 79a7aa810d0493cd0cf4adebac26d37f12e8b545 /fs/reiserfs/super.c | |
parent | 25ed6a5e97809129a1bc852b6b5c7d03baa112c4 (diff) | |
parent | 33688abb2802ff3a230bd2441f765477b94cc89e (diff) |
Merge 4.7-rc4 into staging-next
We want the fixes in here, and we can resolve a merge issue in
drivers/iio/industrialio-trigger.c
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'fs/reiserfs/super.c')
-rw-r--r-- | fs/reiserfs/super.c | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/fs/reiserfs/super.c b/fs/reiserfs/super.c index b8f2d1e8c645..c72c16c5a60f 100644 --- a/fs/reiserfs/super.c +++ b/fs/reiserfs/super.c | |||
@@ -1393,7 +1393,7 @@ static int reiserfs_remount(struct super_block *s, int *mount_flags, char *arg) | |||
1393 | unsigned long safe_mask = 0; | 1393 | unsigned long safe_mask = 0; |
1394 | unsigned int commit_max_age = (unsigned int)-1; | 1394 | unsigned int commit_max_age = (unsigned int)-1; |
1395 | struct reiserfs_journal *journal = SB_JOURNAL(s); | 1395 | struct reiserfs_journal *journal = SB_JOURNAL(s); |
1396 | char *new_opts = kstrdup(arg, GFP_KERNEL); | 1396 | char *new_opts; |
1397 | int err; | 1397 | int err; |
1398 | char *qf_names[REISERFS_MAXQUOTAS]; | 1398 | char *qf_names[REISERFS_MAXQUOTAS]; |
1399 | unsigned int qfmt = 0; | 1399 | unsigned int qfmt = 0; |
@@ -1401,6 +1401,10 @@ static int reiserfs_remount(struct super_block *s, int *mount_flags, char *arg) | |||
1401 | int i; | 1401 | int i; |
1402 | #endif | 1402 | #endif |
1403 | 1403 | ||
1404 | new_opts = kstrdup(arg, GFP_KERNEL); | ||
1405 | if (arg && !new_opts) | ||
1406 | return -ENOMEM; | ||
1407 | |||
1404 | sync_filesystem(s); | 1408 | sync_filesystem(s); |
1405 | reiserfs_write_lock(s); | 1409 | reiserfs_write_lock(s); |
1406 | 1410 | ||
@@ -1546,7 +1550,8 @@ static int reiserfs_remount(struct super_block *s, int *mount_flags, char *arg) | |||
1546 | } | 1550 | } |
1547 | 1551 | ||
1548 | out_ok_unlocked: | 1552 | out_ok_unlocked: |
1549 | replace_mount_options(s, new_opts); | 1553 | if (new_opts) |
1554 | replace_mount_options(s, new_opts); | ||
1550 | return 0; | 1555 | return 0; |
1551 | 1556 | ||
1552 | out_err_unlock: | 1557 | out_err_unlock: |