Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge branch 'for-linus' of git://git.kernel.dk/linux-2.6-block

* 'for-linus' of git://git.kernel.dk/linux-2.6-block:
cciss: fix problem that deleting multiple logical drives could cause a panic

+5
+5
drivers/block/cciss.c
··· 1693 1693 for (i = 0; i <= h->highest_lun; i++) { 1694 1694 int j; 1695 1695 drv_found = 0; 1696 + 1697 + /* skip holes in the array from already deleted drives */ 1698 + if (h->drv[i].raid_level == -1) 1699 + continue; 1700 + 1696 1701 for (j = 0; j < num_luns; j++) { 1697 1702 memcpy(&lunid, &ld_buff->LUN[j][0], 4); 1698 1703 lunid = le32_to_cpu(lunid);