From: Michael Chang <mchang@suse.com>
To: The development of GNU GRUB <grub-devel@gnu.org>
Cc: Martin Wilck <martin.wilck@suse.com>
Subject: [PATCH V1] hostdisk: Fix linux disk cache workaround on multipath disks
Date: Thu, 13 Sep 2018 15:20:34 +0800 [thread overview]
Message-ID: <20180913072034.g7fbfnzify7zvouw@mazu> (raw)
In grub-core/osdep/linux/hostdisk.c::grub_util_fd_open_device() there's comment
about linux disk cache issue as below:
/* Linux has a bug that the disk cache for a whole disk is not consistent
with the one for a partition of the disk. */
{
....
}
As the input argument of grub_util_fd_open_device() is using address in unit of
sector size offset from the "disk", and in a bid to avoid Linux disk cache
inconsistency problem described by comment above, grub translates the address
again into the address offset from partition that has encompassed it, then use
that partition device in place of disk device.
The problem we encountered was that installing grub into multipath disk's
partition didn't work reliably. It boiled down to the disk cache problem
described above as strace result shown it was still using the whole disk
device, not the partition device we would expect.
This patch fixes the problem by adding the missing "/dev/dm-" name scheme
handling in grub_hostdisk_linux_find_partition(). After applying the patch
problem gets solved and we would like to have this fixing patch upstreamed as
it looks good material to be.
v1: Rework commit message.
Signed-off-by: Michael Chang <mchang@suse.com>
---
grub-core/osdep/linux/hostdisk.c | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/grub-core/osdep/linux/hostdisk.c b/grub-core/osdep/linux/hostdisk.c
index 06179fca7..ed530bdc4 100644
--- a/grub-core/osdep/linux/hostdisk.c
+++ b/grub-core/osdep/linux/hostdisk.c
@@ -263,6 +263,12 @@ grub_hostdisk_linux_find_partition (char *dev, grub_disk_addr_t sector)
p = real_dev + len;
format = "-part%d";
}
+ else if (strncmp (real_dev, "/dev/dm-",
+ sizeof ("/dev/dm-") - 1) == 0)
+ {
+ p = real_dev + len - 1;
+ format = "%d";
+ }
else if (real_dev[len - 1] >= '0' && real_dev[len - 1] <= '9')
{
p = real_dev + len;
--
2.13.6
next reply other threads:[~2018-09-13 7:20 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-09-13 7:20 Michael Chang [this message]
2018-09-19 13:28 ` [PATCH V1] hostdisk: Fix linux disk cache workaround on multipath disks Daniel Kiper
2018-09-20 10:14 ` Michael Chang
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20180913072034.g7fbfnzify7zvouw@mazu \
--to=mchang@suse.com \
--cc=grub-devel@gnu.org \
--cc=martin.wilck@suse.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).