+ cciss-fix-regression-that-no-device-nodes-are-created-if-no-logical-drives-are-configured.patch added to -mm tree

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



The patch titled
     cciss: fix regression that no device nodes are created if no logical drives are configured.
has been added to the -mm tree.  Its filename is
     cciss-fix-regression-that-no-device-nodes-are-created-if-no-logical-drives-are-configured.patch

Before you just go and hit "reply", please:
   a) Consider who else should be cc'ed
   b) Prefer to cc a suitable mailing list as well
   c) Ideally: find the original patch on the mailing list and do a
      reply-to-all to that, adding suitable additional cc's

*** Remember to use Documentation/SubmitChecklist when testing your code ***

See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find
out what to do about this

The current -mm tree may be found at http://userweb.kernel.org/~akpm/mmotm/

------------------------------------------------------
Subject: cciss: fix regression that no device nodes are created if no logical drives are configured.
From: Stephen M. Cameron <scameron@xxxxxxxxxxxxxxxxxxxxxxx>

Fix regression in cciss driver that if no logical drives are configured,
no device nodes at all get created.

Signed-off-by: Stephen M. Cameron <scameron@xxxxxxxxxxxxxxxxxxxxxxx>
Acked-by: Mike Miller <mike.miller@xxxxxx>
Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx>
---

 drivers/block/cciss.c |    4 ++++
 1 file changed, 4 insertions(+)

diff -puN drivers/block/cciss.c~cciss-fix-regression-that-no-device-nodes-are-created-if-no-logical-drives-are-configured drivers/block/cciss.c
--- a/drivers/block/cciss.c~cciss-fix-regression-that-no-device-nodes-are-created-if-no-logical-drives-are-configured
+++ a/drivers/block/cciss.c
@@ -3546,6 +3546,10 @@ static int __devinit cciss_init_one(stru
 	for (j = 0; j <= hba[i]->highest_lun; j++)
 		add_disk(hba[i]->gendisk[j]);
 
+	/* we must register the controller even if no disks exist */
+	if (hba[i]->highest_lun == -1)
+		add_disk(hba[i]->gendisk[0]);
+
 	return 1;
 
       clean4:
_

Patches currently in -mm which might be from scameron@xxxxxxxxxxxxxxxxxxxxxxx are

cciss-fix-regression-that-no-device-nodes-are-created-if-no-logical-drives-are-configured.patch

--
To unsubscribe from this list: send the line "unsubscribe mm-commits" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at  http://vger.kernel.org/majordomo-info.html

[Index of Archives]     [Kernel Newbies FAQ]     [Kernel Archive]     [IETF Annouce]     [DCCP]     [Netdev]     [Networking]     [Security]     [Bugtraq]     [Photo]     [Yosemite]     [MIPS Linux]     [ARM Linux]     [Linux Security]     [Linux RAID]     [Linux SCSI]

  Powered by Linux