Blame SOURCES/0166-Handle-rssd-storage-devices.patch

28f7f8
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
ecb9bb
From: Peter Jones <pjones@redhat.com>
ecb9bb
Date: Tue, 30 Jun 2015 15:50:41 -0400
28f7f8
Subject: [PATCH] Handle rssd storage devices.
ecb9bb
ecb9bb
Resolves: rhbz#1087962
ecb9bb
ecb9bb
Signed-off-by: Peter Jones <pjones@redhat.com>
ecb9bb
---
ecb9bb
 grub-core/osdep/linux/getroot.c | 13 +++++++++++++
ecb9bb
 1 file changed, 13 insertions(+)
ecb9bb
ecb9bb
diff --git a/grub-core/osdep/linux/getroot.c b/grub-core/osdep/linux/getroot.c
28f7f8
index 7007193d9c7..5987d078a2f 100644
ecb9bb
--- a/grub-core/osdep/linux/getroot.c
ecb9bb
+++ b/grub-core/osdep/linux/getroot.c
ecb9bb
@@ -884,6 +884,19 @@ grub_util_part_to_disk (const char *os_dev, struct stat *st,
ecb9bb
 	  return path;
ecb9bb
 	}
ecb9bb
 
ecb9bb
+      /* If this is an rssd device. */
ecb9bb
+      if ((strncmp ("rssd", p, 4) == 0) && p[4] >= 'a' && p[4] <= 'z')
ecb9bb
+	{
ecb9bb
+	  char *pp = p + 4;
ecb9bb
+	  while (*pp >= 'a' && *pp <= 'z')
ecb9bb
+	    pp++;
ecb9bb
+	  if (*pp)
ecb9bb
+	    *is_part = 1;
ecb9bb
+	  /* /dev/rssd[a-z]+[0-9]* */
ecb9bb
+	  *pp = '\0';
ecb9bb
+	  return path;
ecb9bb
+	}
ecb9bb
+
ecb9bb
       /* If this is a loop device */
ecb9bb
       if ((strncmp ("loop", p, 4) == 0) && p[4] >= '0' && p[4] <= '9')
ecb9bb
 	{