Vyacheslav Dubeyko
bd2c003532
hfsplus: fix remount issue
...
Current implementation of HFS+ driver has small issue with remount
option. Namely, for example, you are unable to remount from RO mode
into RW mode by means of command "mount -o remount,rw /dev/loop0
/mnt/hfsplus". Trying to execute sequence of commands results in an
error message:
mount /dev/loop0 /mnt/hfsplus
mount -o remount,ro /dev/loop0 /mnt/hfsplus
mount -o remount,rw /dev/loop0 /mnt/hfsplus
mount: you must specify the filesystem type
mount -t hfsplus -o remount,rw /dev/loop0 /mnt/hfsplus
mount: /mnt/hfsplus not mounted or bad option
The reason of such issue is failure of mount syscall:
mount("/dev/loop0", "/mnt/hfsplus", 0x2282a60, MS_MGC_VAL|MS_REMOUNT, NULL) = -1 EINVAL (Invalid argument)
Namely, hfsplus_parse_options_remount() method receives empty "input"
argument and return false in such case. As a result, hfsplus_remount()
returns -EINVAL error code.
This patch fixes the issue by means of return true for the case of empty
"input" argument in hfsplus_parse_options_remount() method.
Signed-off-by: Vyacheslav Dubeyko <slava@dubeyko.com >
Cc: Al Viro <viro@zeniv.linux.org.uk >
Cc: Christoph Hellwig <hch@infradead.org >
Signed-off-by: Andrew Morton <akpm@linux-foundation.org >
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org >
2014-03-04 07:55:49 -08:00
..
2014-01-28 08:38:04 -08:00
2013-10-24 23:43:27 -04:00
2014-01-25 03:13:01 -05:00
2014-02-01 10:59:39 -08:00
2014-01-23 16:36:59 -08:00
2014-01-25 03:14:38 -05:00
2013-09-12 15:38:02 -07:00
2014-02-16 11:05:27 -08:00
2013-11-13 15:34:18 +09:00
2014-02-17 12:37:13 -08:00
2014-02-17 13:50:11 -08:00
2013-11-09 00:16:21 -05:00
2013-11-21 16:42:27 -08:00
2014-01-25 03:13:02 -05:00
2013-11-13 12:09:24 +09:00
2013-11-13 12:09:36 +09:00
2014-01-25 11:17:34 -08:00
2014-01-25 03:13:00 -05:00
2013-11-15 22:04:17 -05:00
2014-01-25 03:13:02 -05:00
2014-01-23 18:54:14 +02:00
2013-11-09 00:16:38 -05:00
2014-01-25 23:58:19 -05:00
2014-01-28 08:38:04 -08:00
2014-02-16 19:29:32 -05:00
2014-01-30 11:19:05 -08:00
2013-10-24 23:43:28 -04:00
2013-06-29 12:56:53 +04:00
2014-02-17 13:47:35 -08:00
2014-01-28 08:38:04 -08:00
2014-01-30 11:19:05 -08:00
2013-11-13 12:09:32 +09:00
2014-03-04 07:55:49 -08:00
2014-01-26 11:51:09 +01:00
2014-02-02 16:24:07 -08:00
2013-07-03 16:07:41 -07:00
2013-08-24 12:10:17 -04:00
2013-10-24 23:34:59 -04:00
2013-12-04 12:27:46 +01:00
2014-02-17 20:33:01 -05:00
2014-01-28 18:56:37 -08:00
2014-02-13 15:56:05 -06:00
2014-02-25 07:37:52 -08:00
2014-02-13 14:55:02 -05:00
2014-01-30 11:19:05 -08:00
2013-09-16 18:20:25 -07:00
2013-10-24 23:43:28 -04:00
2014-02-20 12:01:09 -08:00
2013-02-13 06:15:14 -08:00
2014-02-11 13:48:11 -05:00
2014-01-30 11:19:05 -08:00
2014-01-25 03:14:05 -05:00
2014-02-25 11:18:06 +01:00
2014-02-09 15:18:09 -05:00
2014-03-04 07:55:48 -08:00
2013-09-12 15:38:02 -07:00
2013-06-29 12:56:32 +04:00
2014-03-04 07:55:47 -08:00
2013-12-20 13:12:01 -08:00
2014-01-25 03:13:03 -05:00
2013-06-29 12:56:39 +04:00
2014-02-20 21:57:04 +01:00
2014-01-23 16:36:58 -08:00
2014-02-17 13:46:33 -08:00
2014-01-23 16:37:04 -08:00
2013-11-24 01:02:50 +00:00
2014-02-25 07:37:52 -08:00
2013-09-29 22:02:02 -04:00
2014-01-23 16:37:03 -08:00
2014-02-20 21:56:00 +01:00
2013-09-12 15:38:02 -07:00
2014-02-27 10:37:22 -08:00
2013-12-22 11:03:49 -08:00
2013-11-09 00:16:28 -05:00
2013-12-05 16:36:21 -06:00
2013-06-29 12:57:04 +04:00
2013-11-09 00:16:26 -05:00
2013-11-09 00:16:30 -05:00
2014-01-23 16:36:58 -08:00
2013-10-24 23:34:54 -04:00
2013-04-29 15:40:23 -04:00
2013-04-30 17:04:03 -07:00
2012-12-20 17:40:19 -08:00
2012-11-28 21:53:38 -05:00
2014-02-09 13:56:23 -07:00
2014-02-11 08:40:45 -07:00
2013-09-13 23:06:40 -04:00
2014-02-06 13:48:51 -08:00
2013-11-14 12:08:14 +09:00
2012-10-06 03:05:17 +09:00
2014-01-21 16:19:42 -08:00
2013-06-29 12:57:05 +04:00
2014-01-23 16:37:01 -08:00
2014-01-26 12:37:55 -05:00
2014-01-29 16:22:40 -08:00
2013-11-23 22:33:47 -08:00
2013-09-10 18:56:31 -04:00
2014-01-25 03:13:04 -05:00
2014-01-02 14:40:30 -08:00
2014-02-05 12:54:53 -08:00
2013-10-24 23:34:54 -04:00
2012-12-20 14:04:11 -08:00
2013-11-13 15:34:18 +09:00
2014-02-10 16:01:41 -08:00
2013-03-03 19:36:31 -08:00
2013-11-06 12:40:26 +01:00
2014-02-22 02:02:28 +01:00
2013-11-09 00:16:44 -05:00
2013-11-09 00:16:20 -05:00
2013-10-24 23:34:54 -04:00
2012-05-30 08:52:42 -07:00
2014-01-26 08:26:40 -05:00
2013-04-30 17:04:04 -07:00
2013-11-15 22:04:17 -05:00
2013-11-13 07:30:53 -05:00
2014-01-28 08:38:04 -08:00
2013-09-10 18:56:31 -04:00
2014-01-26 08:26:42 -05:00
2013-11-23 22:33:47 -08:00
2014-02-05 12:54:53 -08:00
2014-01-20 15:49:44 -08:00
2010-10-15 15:53:27 +02:00
2013-11-09 00:16:44 -05:00
2014-01-23 16:37:00 -08:00
2013-10-24 23:35:00 -04:00
2013-08-26 18:42:15 -07:00
2014-02-03 17:12:37 -05:00
2014-01-23 16:37:02 -08:00
2014-01-29 16:22:39 -08:00
2013-10-24 23:34:54 -04:00
2013-11-13 15:34:18 +09:00
2013-11-18 19:07:53 -08:00
2013-03-03 22:58:46 -05:00
2014-01-22 19:36:57 +01:00
2012-02-28 19:31:58 -05:00
2013-11-09 00:16:31 -05:00
2013-10-12 13:12:31 -07:00
2014-01-31 14:29:36 -05:00
2014-02-22 02:02:28 +01:00
2013-05-29 12:57:34 -07:00
2013-11-09 00:16:44 -05:00
2012-12-20 18:50:11 -05:00