All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/2] cciss: remove duplicate entries from board_type struct
@ 2015-02-17 16:40 Tomas Henzl
  2015-02-17 16:40 ` [PATCH 2/2] cciss: correct the non-resettable board list Tomas Henzl
                   ` (2 more replies)
  0 siblings, 3 replies; 8+ messages in thread
From: Tomas Henzl @ 2015-02-17 16:40 UTC (permalink / raw)
  To: linux-scsi; +Cc: don.brace, linux-kernel, axboe

and devices not supported by this driver from unresettable list

Signed-off-by: Tomas Henzl <thenzl@redhat.com>
---
 drivers/block/cciss.c | 4 ----
 1 file changed, 4 deletions(-)

diff --git a/drivers/block/cciss.c b/drivers/block/cciss.c
index ff20f192b0..48498220cd 100644
--- a/drivers/block/cciss.c
+++ b/drivers/block/cciss.c
@@ -139,8 +139,6 @@ static struct board_type products[] = {
 	{0x3214103C, "Smart Array E200i", &SA5_access},
 	{0x3215103C, "Smart Array E200i", &SA5_access},
 	{0x3237103C, "Smart Array E500", &SA5_access},
-	{0x3223103C, "Smart Array P800", &SA5_access},
-	{0x3234103C, "Smart Array P400", &SA5_access},
 	{0x323D103C, "Smart Array P700m", &SA5_access},
 };
 
@@ -574,8 +572,6 @@ static void cciss_procinit(ctlr_info_t *h)
 
 /* List of controllers which cannot be hard reset on kexec with reset_devices */
 static u32 unresettable_controller[] = {
-	0x324a103C, /* Smart Array P712m */
-	0x324b103C, /* SmartArray P711m */
 	0x3223103C, /* Smart Array P800 */
 	0x3234103C, /* Smart Array P400 */
 	0x3235103C, /* Smart Array P400i */
-- 
1.9.3


^ permalink raw reply related	[flat|nested] 8+ messages in thread

* [PATCH 2/2] cciss: correct the non-resettable board list
  2015-02-17 16:40 [PATCH 1/2] cciss: remove duplicate entries from board_type struct Tomas Henzl
@ 2015-02-17 16:40 ` Tomas Henzl
  2015-05-18 21:26   ` Don Brace
                     ` (3 more replies)
  2015-05-18 21:36 ` [PATCH 1/2] cciss: remove duplicate entries from board_type struct Don Brace
  2015-05-19 18:52 ` Don Brace
  2 siblings, 4 replies; 8+ messages in thread
From: Tomas Henzl @ 2015-02-17 16:40 UTC (permalink / raw)
  To: linux-scsi; +Cc: don.brace, linux-kernel, axboe

The hpsa driver carries a more recent version,
copy the table from there.

Signed-off-by: Tomas Henzl <thenzl@redhat.com>
---
 drivers/block/cciss.c | 23 +++++++++++++++++++++--
 1 file changed, 21 insertions(+), 2 deletions(-)

diff --git a/drivers/block/cciss.c b/drivers/block/cciss.c
index 48498220cd..0ca65b25ef 100644
--- a/drivers/block/cciss.c
+++ b/drivers/block/cciss.c
@@ -582,12 +582,32 @@ static u32 unresettable_controller[] = {
 	0x3215103C, /* Smart Array E200i */
 	0x3237103C, /* Smart Array E500 */
 	0x323D103C, /* Smart Array P700m */
+	0x40800E11, /* Smart Array 5i */
 	0x409C0E11, /* Smart Array 6400 */
 	0x409D0E11, /* Smart Array 6400 EM */
+	0x40700E11, /* Smart Array 5300 */
+	0x40820E11, /* Smart Array 532 */
+	0x40830E11, /* Smart Array 5312 */
+	0x409A0E11, /* Smart Array 641 */
+	0x409B0E11, /* Smart Array 642 */
+	0x40910E11, /* Smart Array 6i */
 };
 
 /* List of controllers which cannot even be soft reset */
 static u32 soft_unresettable_controller[] = {
+	0x40800E11, /* Smart Array 5i */
+	0x40700E11, /* Smart Array 5300 */
+	0x40820E11, /* Smart Array 532 */
+	0x40830E11, /* Smart Array 5312 */
+	0x409A0E11, /* Smart Array 641 */
+	0x409B0E11, /* Smart Array 642 */
+	0x40910E11, /* Smart Array 6i */
+	/* Exclude 640x boards.  These are two pci devices in one slot
+	 * which share a battery backed cache module.  One controls the
+	 * cache, the other accesses the cache through the one that controls
+	 * it.  If we reset the one controlling the cache, the other will
+	 * likely not be happy.  Just forbid resetting this conjoined mess.
+	 */
 	0x409C0E11, /* Smart Array 6400 */
 	0x409D0E11, /* Smart Array 6400 EM */
 };
@@ -4663,8 +4683,7 @@ static int cciss_kdump_hard_reset_controller(struct pci_dev *pdev)
 	 */
 	cciss_lookup_board_id(pdev, &board_id);
 	if (!ctlr_is_resettable(board_id)) {
-		dev_warn(&pdev->dev, "Cannot reset Smart Array 640x "
-				"due to shared cache module.");
+		dev_warn(&pdev->dev, "Controller not resettable\n");
 		return -ENODEV;
 	}
 
-- 
1.9.3


^ permalink raw reply related	[flat|nested] 8+ messages in thread

* RE: [PATCH 2/2] cciss: correct the non-resettable board list
  2015-02-17 16:40 ` [PATCH 2/2] cciss: correct the non-resettable board list Tomas Henzl
@ 2015-05-18 21:26   ` Don Brace
  2015-05-19 18:55   ` Don Brace
                     ` (2 subsequent siblings)
  3 siblings, 0 replies; 8+ messages in thread
From: Don Brace @ 2015-05-18 21:26 UTC (permalink / raw)
  To: Tomas Henzl, linux-scsi; +Cc: linux-kernel, axboe

> -----Original Message-----
> From: Tomas Henzl [mailto:thenzl@redhat.com]
> Sent: Tuesday, February 17, 2015 10:40 AM
> To: linux-scsi@vger.kernel.org
> Cc: Don Brace; linux-kernel@vger.kernel.org; axboe@kernel.dk
> Subject: [PATCH 2/2] cciss: correct the non-resettable board list
> 
> The hpsa driver carries a more recent version,
> copy the table from there.
> 
> Signed-off-by: Tomas Henzl <thenzl@redhat.com>
> ---
>  drivers/block/cciss.c | 23 +++++++++++++++++++++--
>  1 file changed, 21 insertions(+), 2 deletions(-)
> 
> diff --git a/drivers/block/cciss.c b/drivers/block/cciss.c
> index 48498220cd..0ca65b25ef 100644
> --- a/drivers/block/cciss.c
> +++ b/drivers/block/cciss.c
> @@ -582,12 +582,32 @@ static u32 unresettable_controller[] = {
>  	0x3215103C, /* Smart Array E200i */
>  	0x3237103C, /* Smart Array E500 */
>  	0x323D103C, /* Smart Array P700m */
> +	0x40800E11, /* Smart Array 5i */
>  	0x409C0E11, /* Smart Array 6400 */
>  	0x409D0E11, /* Smart Array 6400 EM */
> +	0x40700E11, /* Smart Array 5300 */
> +	0x40820E11, /* Smart Array 532 */
> +	0x40830E11, /* Smart Array 5312 */
> +	0x409A0E11, /* Smart Array 641 */
> +	0x409B0E11, /* Smart Array 642 */
> +	0x40910E11, /* Smart Array 6i */
>  };
> 
>  /* List of controllers which cannot even be soft reset */
>  static u32 soft_unresettable_controller[] = {
> +	0x40800E11, /* Smart Array 5i */
> +	0x40700E11, /* Smart Array 5300 */
> +	0x40820E11, /* Smart Array 532 */
> +	0x40830E11, /* Smart Array 5312 */
> +	0x409A0E11, /* Smart Array 641 */
> +	0x409B0E11, /* Smart Array 642 */
> +	0x40910E11, /* Smart Array 6i */
> +	/* Exclude 640x boards.  These are two pci devices in one slot
> +	 * which share a battery backed cache module.  One controls the
> +	 * cache, the other accesses the cache through the one that controls
> +	 * it.  If we reset the one controlling the cache, the other will
> +	 * likely not be happy.  Just forbid resetting this conjoined mess.
> +	 */
>  	0x409C0E11, /* Smart Array 6400 */
>  	0x409D0E11, /* Smart Array 6400 EM */
>  };
> @@ -4663,8 +4683,7 @@ static int cciss_kdump_hard_reset_controller(struct
> pci_dev *pdev)
>  	 */
>  	cciss_lookup_board_id(pdev, &board_id);
>  	if (!ctlr_is_resettable(board_id)) {
> -		dev_warn(&pdev->dev, "Cannot reset Smart Array 640x "
> -				"due to shared cache module.");
> +		dev_warn(&pdev->dev, "Controller not resettable\n");
>  		return -ENODEV;
>  	}
> 
> --
> 1.9.3

Looks good.


^ permalink raw reply	[flat|nested] 8+ messages in thread

* RE: [PATCH 1/2] cciss: remove duplicate entries from board_type struct
  2015-02-17 16:40 [PATCH 1/2] cciss: remove duplicate entries from board_type struct Tomas Henzl
  2015-02-17 16:40 ` [PATCH 2/2] cciss: correct the non-resettable board list Tomas Henzl
@ 2015-05-18 21:36 ` Don Brace
  2015-05-19 18:52 ` Don Brace
  2 siblings, 0 replies; 8+ messages in thread
From: Don Brace @ 2015-05-18 21:36 UTC (permalink / raw)
  To: Tomas Henzl, linux-scsi; +Cc: linux-kernel, axboe

> -----Original Message-----
> From: Tomas Henzl [mailto:thenzl@redhat.com]
> Sent: Tuesday, February 17, 2015 10:40 AM
> To: linux-scsi@vger.kernel.org
> Cc: Don Brace; linux-kernel@vger.kernel.org; axboe@kernel.dk
> Subject: [PATCH 1/2] cciss: remove duplicate entries from board_type struct
> 
> and devices not supported by this driver from unresettable list
> 
> Signed-off-by: Tomas Henzl <thenzl@redhat.com>
> ---
>  drivers/block/cciss.c | 4 ----
>  1 file changed, 4 deletions(-)
> 
> diff --git a/drivers/block/cciss.c b/drivers/block/cciss.c
> index ff20f192b0..48498220cd 100644
> --- a/drivers/block/cciss.c
> +++ b/drivers/block/cciss.c
> @@ -139,8 +139,6 @@ static struct board_type products[] = {
>  	{0x3214103C, "Smart Array E200i", &SA5_access},
>  	{0x3215103C, "Smart Array E200i", &SA5_access},
>  	{0x3237103C, "Smart Array E500", &SA5_access},
> -	{0x3223103C, "Smart Array P800", &SA5_access},
> -	{0x3234103C, "Smart Array P400", &SA5_access},
>  	{0x323D103C, "Smart Array P700m", &SA5_access},
>  };
> 
> @@ -574,8 +572,6 @@ static void cciss_procinit(ctlr_info_t *h)
> 
>  /* List of controllers which cannot be hard reset on kexec with reset_devices */
>  static u32 unresettable_controller[] = {
> -	0x324a103C, /* Smart Array P712m */
> -	0x324b103C, /* SmartArray P711m */
>  	0x3223103C, /* Smart Array P800 */
>  	0x3234103C, /* Smart Array P400 */
>  	0x3235103C, /* Smart Array P400i */
> --
> 1.9.3

Looks good

^ permalink raw reply	[flat|nested] 8+ messages in thread

* RE: [PATCH 1/2] cciss: remove duplicate entries from board_type struct
  2015-02-17 16:40 [PATCH 1/2] cciss: remove duplicate entries from board_type struct Tomas Henzl
  2015-02-17 16:40 ` [PATCH 2/2] cciss: correct the non-resettable board list Tomas Henzl
  2015-05-18 21:36 ` [PATCH 1/2] cciss: remove duplicate entries from board_type struct Don Brace
@ 2015-05-19 18:52 ` Don Brace
  2 siblings, 0 replies; 8+ messages in thread
From: Don Brace @ 2015-05-19 18:52 UTC (permalink / raw)
  To: Tomas Henzl, linux-scsi; +Cc: linux-kernel, axboe

> -----Original Message-----
> From: Tomas Henzl [mailto:thenzl@redhat.com]
> Sent: Tuesday, February 17, 2015 10:40 AM
> To: linux-scsi@vger.kernel.org
> Cc: Don Brace; linux-kernel@vger.kernel.org; axboe@kernel.dk
> Subject: [PATCH 1/2] cciss: remove duplicate entries from board_type struct
> 
> and devices not supported by this driver from unresettable list
> 
> Signed-off-by: Tomas Henzl <thenzl@redhat.com>
> ---
>  drivers/block/cciss.c | 4 ----
>  1 file changed, 4 deletions(-)
> 
> diff --git a/drivers/block/cciss.c b/drivers/block/cciss.c
> index ff20f192b0..48498220cd 100644
> --- a/drivers/block/cciss.c
> +++ b/drivers/block/cciss.c
> @@ -139,8 +139,6 @@ static struct board_type products[] = {
>  	{0x3214103C, "Smart Array E200i", &SA5_access},
>  	{0x3215103C, "Smart Array E200i", &SA5_access},
>  	{0x3237103C, "Smart Array E500", &SA5_access},
> -	{0x3223103C, "Smart Array P800", &SA5_access},
> -	{0x3234103C, "Smart Array P400", &SA5_access},
>  	{0x323D103C, "Smart Array P700m", &SA5_access},
>  };
> 
> @@ -574,8 +572,6 @@ static void cciss_procinit(ctlr_info_t *h)
> 
>  /* List of controllers which cannot be hard reset on kexec with reset_devices */
>  static u32 unresettable_controller[] = {
> -	0x324a103C, /* Smart Array P712m */
> -	0x324b103C, /* SmartArray P711m */
>  	0x3223103C, /* Smart Array P800 */
>  	0x3234103C, /* Smart Array P400 */
>  	0x3235103C, /* Smart Array P400i */
> --
> 1.9.3

Signed-off-by Don Brace <don.brace@pmcs.com>

^ permalink raw reply	[flat|nested] 8+ messages in thread

* RE: [PATCH 2/2] cciss: correct the non-resettable board list
  2015-02-17 16:40 ` [PATCH 2/2] cciss: correct the non-resettable board list Tomas Henzl
  2015-05-18 21:26   ` Don Brace
@ 2015-05-19 18:55   ` Don Brace
  2015-05-19 18:56   ` Don Brace
  2015-05-19 18:58   ` Don Brace
  3 siblings, 0 replies; 8+ messages in thread
From: Don Brace @ 2015-05-19 18:55 UTC (permalink / raw)
  To: Tomas Henzl, linux-scsi; +Cc: linux-kernel, axboe

> -----Original Message-----
> From: Tomas Henzl [mailto:thenzl@redhat.com]
> Sent: Tuesday, February 17, 2015 10:40 AM
> To: linux-scsi@vger.kernel.org
> Cc: Don Brace; linux-kernel@vger.kernel.org; axboe@kernel.dk
> Subject: [PATCH 2/2] cciss: correct the non-resettable board list
> 
> The hpsa driver carries a more recent version,
> copy the table from there.
> 
> Signed-off-by: Tomas Henzl <thenzl@redhat.com>
> ---
>  drivers/block/cciss.c | 23 +++++++++++++++++++++--
>  1 file changed, 21 insertions(+), 2 deletions(-)
> 
> diff --git a/drivers/block/cciss.c b/drivers/block/cciss.c
> index 48498220cd..0ca65b25ef 100644
> --- a/drivers/block/cciss.c
> +++ b/drivers/block/cciss.c
> @@ -582,12 +582,32 @@ static u32 unresettable_controller[] = {
>  	0x3215103C, /* Smart Array E200i */
>  	0x3237103C, /* Smart Array E500 */
>  	0x323D103C, /* Smart Array P700m */
> +	0x40800E11, /* Smart Array 5i */
>  	0x409C0E11, /* Smart Array 6400 */
>  	0x409D0E11, /* Smart Array 6400 EM */
> +	0x40700E11, /* Smart Array 5300 */
> +	0x40820E11, /* Smart Array 532 */
> +	0x40830E11, /* Smart Array 5312 */
> +	0x409A0E11, /* Smart Array 641 */
> +	0x409B0E11, /* Smart Array 642 */
> +	0x40910E11, /* Smart Array 6i */
>  };
> 
>  /* List of controllers which cannot even be soft reset */
>  static u32 soft_unresettable_controller[] = {
> +	0x40800E11, /* Smart Array 5i */
> +	0x40700E11, /* Smart Array 5300 */
> +	0x40820E11, /* Smart Array 532 */
> +	0x40830E11, /* Smart Array 5312 */
> +	0x409A0E11, /* Smart Array 641 */
> +	0x409B0E11, /* Smart Array 642 */
> +	0x40910E11, /* Smart Array 6i */
> +	/* Exclude 640x boards.  These are two pci devices in one slot
> +	 * which share a battery backed cache module.  One controls the
> +	 * cache, the other accesses the cache through the one that controls
> +	 * it.  If we reset the one controlling the cache, the other will
> +	 * likely not be happy.  Just forbid resetting this conjoined mess.
> +	 */
>  	0x409C0E11, /* Smart Array 6400 */
>  	0x409D0E11, /* Smart Array 6400 EM */
>  };
> @@ -4663,8 +4683,7 @@ static int cciss_kdump_hard_reset_controller(struct
> pci_dev *pdev)
>  	 */
>  	cciss_lookup_board_id(pdev, &board_id);
>  	if (!ctlr_is_resettable(board_id)) {
> -		dev_warn(&pdev->dev, "Cannot reset Smart Array 640x "
> -				"due to shared cache module.");
> +		dev_warn(&pdev->dev, "Controller not resettable\n");
>  		return -ENODEV;
>  	}
> 
> --
> 1.9.3
correct the non-resettable board list

^ permalink raw reply	[flat|nested] 8+ messages in thread

* RE: [PATCH 2/2] cciss: correct the non-resettable board list
  2015-02-17 16:40 ` [PATCH 2/2] cciss: correct the non-resettable board list Tomas Henzl
  2015-05-18 21:26   ` Don Brace
  2015-05-19 18:55   ` Don Brace
@ 2015-05-19 18:56   ` Don Brace
  2015-05-19 18:58   ` Don Brace
  3 siblings, 0 replies; 8+ messages in thread
From: Don Brace @ 2015-05-19 18:56 UTC (permalink / raw)
  To: Tomas Henzl, linux-scsi; +Cc: linux-kernel, axboe

> -----Original Message-----
> From: Tomas Henzl [mailto:thenzl@redhat.com]
> Sent: Tuesday, February 17, 2015 10:40 AM
> To: linux-scsi@vger.kernel.org
> Cc: Don Brace; linux-kernel@vger.kernel.org; axboe@kernel.dk
> Subject: [PATCH 2/2] cciss: correct the non-resettable board list
> 
> The hpsa driver carries a more recent version,
> copy the table from there.
> 
> Signed-off-by: Tomas Henzl <thenzl@redhat.com>
> ---
>  drivers/block/cciss.c | 23 +++++++++++++++++++++--
>  1 file changed, 21 insertions(+), 2 deletions(-)
> 
> diff --git a/drivers/block/cciss.c b/drivers/block/cciss.c
> index 48498220cd..0ca65b25ef 100644
> --- a/drivers/block/cciss.c
> +++ b/drivers/block/cciss.c
> @@ -582,12 +582,32 @@ static u32 unresettable_controller[] = {
>  	0x3215103C, /* Smart Array E200i */
>  	0x3237103C, /* Smart Array E500 */
>  	0x323D103C, /* Smart Array P700m */
> +	0x40800E11, /* Smart Array 5i */
>  	0x409C0E11, /* Smart Array 6400 */
>  	0x409D0E11, /* Smart Array 6400 EM */
> +	0x40700E11, /* Smart Array 5300 */
> +	0x40820E11, /* Smart Array 532 */
> +	0x40830E11, /* Smart Array 5312 */
> +	0x409A0E11, /* Smart Array 641 */
> +	0x409B0E11, /* Smart Array 642 */
> +	0x40910E11, /* Smart Array 6i */
>  };
> 
>  /* List of controllers which cannot even be soft reset */
>  static u32 soft_unresettable_controller[] = {
> +	0x40800E11, /* Smart Array 5i */
> +	0x40700E11, /* Smart Array 5300 */
> +	0x40820E11, /* Smart Array 532 */
> +	0x40830E11, /* Smart Array 5312 */
> +	0x409A0E11, /* Smart Array 641 */
> +	0x409B0E11, /* Smart Array 642 */
> +	0x40910E11, /* Smart Array 6i */
> +	/* Exclude 640x boards.  These are two pci devices in one slot
> +	 * which share a battery backed cache module.  One controls the
> +	 * cache, the other accesses the cache through the one that controls
> +	 * it.  If we reset the one controlling the cache, the other will
> +	 * likely not be happy.  Just forbid resetting this conjoined mess.
> +	 */
>  	0x409C0E11, /* Smart Array 6400 */
>  	0x409D0E11, /* Smart Array 6400 EM */
>  };
> @@ -4663,8 +4683,7 @@ static int cciss_kdump_hard_reset_controller(struct
> pci_dev *pdev)
>  	 */
>  	cciss_lookup_board_id(pdev, &board_id);
>  	if (!ctlr_is_resettable(board_id)) {
> -		dev_warn(&pdev->dev, "Cannot reset Smart Array 640x "
> -				"due to shared cache module.");
> +		dev_warn(&pdev->dev, "Controller not resettable\n");
>  		return -ENODEV;
>  	}
> 
> --
> 1.9.3
Signed-off-by Don Brace <don.brace@pmcs.com>

^ permalink raw reply	[flat|nested] 8+ messages in thread

* RE: [PATCH 2/2] cciss: correct the non-resettable board list
  2015-02-17 16:40 ` [PATCH 2/2] cciss: correct the non-resettable board list Tomas Henzl
                     ` (2 preceding siblings ...)
  2015-05-19 18:56   ` Don Brace
@ 2015-05-19 18:58   ` Don Brace
  3 siblings, 0 replies; 8+ messages in thread
From: Don Brace @ 2015-05-19 18:58 UTC (permalink / raw)
  To: Tomas Henzl, linux-scsi; +Cc: linux-kernel, axboe

 -----Original Message-----
> From: Don Brace
> Sent: Tuesday, May 19, 2015 1:56 PM
> To: 'Tomas Henzl'; linux-scsi@vger.kernel.org
> Cc: linux-kernel@vger.kernel.org; axboe@kernel.dk
> Subject: RE: [PATCH 2/2] cciss: correct the non-resettable board list
> 
> > -----Original Message-----
> > From: Tomas Henzl [mailto:thenzl@redhat.com]
> > Sent: Tuesday, February 17, 2015 10:40 AM
> > To: linux-scsi@vger.kernel.org
> > Cc: Don Brace; linux-kernel@vger.kernel.org; axboe@kernel.dk
> > Subject: [PATCH 2/2] cciss: correct the non-resettable board list
> >
> > The hpsa driver carries a more recent version,
> > copy the table from there.
> >
> > Signed-off-by: Tomas Henzl <thenzl@redhat.com>
> > ---
> >  drivers/block/cciss.c | 23 +++++++++++++++++++++--
> >  1 file changed, 21 insertions(+), 2 deletions(-)
> >
> > diff --git a/drivers/block/cciss.c b/drivers/block/cciss.c
> > index 48498220cd..0ca65b25ef 100644
> > --- a/drivers/block/cciss.c
> > +++ b/drivers/block/cciss.c
> > @@ -582,12 +582,32 @@ static u32 unresettable_controller[] = {
> >  	0x3215103C, /* Smart Array E200i */
> >  	0x3237103C, /* Smart Array E500 */
> >  	0x323D103C, /* Smart Array P700m */
> > +	0x40800E11, /* Smart Array 5i */
> >  	0x409C0E11, /* Smart Array 6400 */
> >  	0x409D0E11, /* Smart Array 6400 EM */
> > +	0x40700E11, /* Smart Array 5300 */
> > +	0x40820E11, /* Smart Array 532 */
> > +	0x40830E11, /* Smart Array 5312 */
> > +	0x409A0E11, /* Smart Array 641 */
> > +	0x409B0E11, /* Smart Array 642 */
> > +	0x40910E11, /* Smart Array 6i */
> >  };
> >
> >  /* List of controllers which cannot even be soft reset */
> >  static u32 soft_unresettable_controller[] = {
> > +	0x40800E11, /* Smart Array 5i */
> > +	0x40700E11, /* Smart Array 5300 */
> > +	0x40820E11, /* Smart Array 532 */
> > +	0x40830E11, /* Smart Array 5312 */
> > +	0x409A0E11, /* Smart Array 641 */
> > +	0x409B0E11, /* Smart Array 642 */
> > +	0x40910E11, /* Smart Array 6i */
> > +	/* Exclude 640x boards.  These are two pci devices in one slot
> > +	 * which share a battery backed cache module.  One controls the
> > +	 * cache, the other accesses the cache through the one that controls
> > +	 * it.  If we reset the one controlling the cache, the other will
> > +	 * likely not be happy.  Just forbid resetting this conjoined mess.
> > +	 */
> >  	0x409C0E11, /* Smart Array 6400 */
> >  	0x409D0E11, /* Smart Array 6400 EM */
> >  };
> > @@ -4663,8 +4683,7 @@ static int cciss_kdump_hard_reset_controller(struct
> > pci_dev *pdev)
> >  	 */
> >  	cciss_lookup_board_id(pdev, &board_id);
> >  	if (!ctlr_is_resettable(board_id)) {
> > -		dev_warn(&pdev->dev, "Cannot reset Smart Array 640x "
> > -				"due to shared cache module.");
> > +		dev_warn(&pdev->dev, "Controller not resettable\n");
> >  		return -ENODEV;
> >  	}
> >
> > --
> > 1.9.3

Goofed on the last one. Sorry about that.

Signed-off-by Don Brace <don.brace@pmcs.com>

^ permalink raw reply	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2015-05-19 18:58 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-02-17 16:40 [PATCH 1/2] cciss: remove duplicate entries from board_type struct Tomas Henzl
2015-02-17 16:40 ` [PATCH 2/2] cciss: correct the non-resettable board list Tomas Henzl
2015-05-18 21:26   ` Don Brace
2015-05-19 18:55   ` Don Brace
2015-05-19 18:56   ` Don Brace
2015-05-19 18:58   ` Don Brace
2015-05-18 21:36 ` [PATCH 1/2] cciss: remove duplicate entries from board_type struct Don Brace
2015-05-19 18:52 ` Don Brace

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.