mirror of
https://github.com/adulau/aha.git
synced 2024-12-27 19:26:25 +00:00
[SCSI] ses: update enclosure data on hot add
Now that hot add works correctly, if a new device is added, we're still operating on stale enclosure data, so fix that by updating the enclosure diagnostic pages when we get notified of a device hot add Signed-off-by: James Bottomley <James.Bottomley@HansenPartnership.com> Signed-off-by: James Bottomley <James.Bottomley@suse.de>
This commit is contained in:
parent
43d8eb9cfd
commit
21fab1d059
2 changed files with 100 additions and 71 deletions
|
@ -315,6 +315,9 @@ int enclosure_add_device(struct enclosure_device *edev, int component,
|
||||||
|
|
||||||
cdev = &edev->component[component];
|
cdev = &edev->component[component];
|
||||||
|
|
||||||
|
if (cdev->dev == dev)
|
||||||
|
return -EEXIST;
|
||||||
|
|
||||||
if (cdev->dev)
|
if (cdev->dev)
|
||||||
enclosure_remove_links(cdev);
|
enclosure_remove_links(cdev);
|
||||||
|
|
||||||
|
|
|
@ -347,6 +347,97 @@ static int ses_enclosure_find_by_addr(struct enclosure_device *edev,
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#define INIT_ALLOC_SIZE 32
|
||||||
|
|
||||||
|
static void ses_enclosure_data_process(struct enclosure_device *edev,
|
||||||
|
struct scsi_device *sdev,
|
||||||
|
int create)
|
||||||
|
{
|
||||||
|
u32 result;
|
||||||
|
unsigned char *buf = NULL, *type_ptr, *desc_ptr, *addl_desc_ptr = NULL;
|
||||||
|
int i, j, page7_len, len, components;
|
||||||
|
struct ses_device *ses_dev = edev->scratch;
|
||||||
|
int types = ses_dev->page1[10];
|
||||||
|
unsigned char *hdr_buf = kzalloc(INIT_ALLOC_SIZE, GFP_KERNEL);
|
||||||
|
|
||||||
|
if (!hdr_buf)
|
||||||
|
goto simple_populate;
|
||||||
|
|
||||||
|
/* re-read page 10 */
|
||||||
|
if (ses_dev->page10)
|
||||||
|
ses_recv_diag(sdev, 10, ses_dev->page10, ses_dev->page10_len);
|
||||||
|
/* Page 7 for the descriptors is optional */
|
||||||
|
result = ses_recv_diag(sdev, 7, hdr_buf, INIT_ALLOC_SIZE);
|
||||||
|
if (result)
|
||||||
|
goto simple_populate;
|
||||||
|
|
||||||
|
page7_len = len = (hdr_buf[2] << 8) + hdr_buf[3] + 4;
|
||||||
|
/* add 1 for trailing '\0' we'll use */
|
||||||
|
buf = kzalloc(len + 1, GFP_KERNEL);
|
||||||
|
if (!buf)
|
||||||
|
goto simple_populate;
|
||||||
|
result = ses_recv_diag(sdev, 7, buf, len);
|
||||||
|
if (result) {
|
||||||
|
simple_populate:
|
||||||
|
kfree(buf);
|
||||||
|
buf = NULL;
|
||||||
|
desc_ptr = NULL;
|
||||||
|
len = 0;
|
||||||
|
page7_len = 0;
|
||||||
|
} else {
|
||||||
|
desc_ptr = buf + 8;
|
||||||
|
len = (desc_ptr[2] << 8) + desc_ptr[3];
|
||||||
|
/* skip past overall descriptor */
|
||||||
|
desc_ptr += len + 4;
|
||||||
|
if (ses_dev->page10)
|
||||||
|
addl_desc_ptr = ses_dev->page10 + 8;
|
||||||
|
}
|
||||||
|
type_ptr = ses_dev->page1 + 12 + ses_dev->page1[11];
|
||||||
|
components = 0;
|
||||||
|
for (i = 0; i < types; i++, type_ptr += 4) {
|
||||||
|
for (j = 0; j < type_ptr[1]; j++) {
|
||||||
|
char *name = NULL;
|
||||||
|
struct enclosure_component *ecomp;
|
||||||
|
|
||||||
|
if (desc_ptr) {
|
||||||
|
if (desc_ptr >= buf + page7_len) {
|
||||||
|
desc_ptr = NULL;
|
||||||
|
} else {
|
||||||
|
len = (desc_ptr[2] << 8) + desc_ptr[3];
|
||||||
|
desc_ptr += 4;
|
||||||
|
/* Add trailing zero - pushes into
|
||||||
|
* reserved space */
|
||||||
|
desc_ptr[len] = '\0';
|
||||||
|
name = desc_ptr;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (type_ptr[0] == ENCLOSURE_COMPONENT_DEVICE ||
|
||||||
|
type_ptr[0] == ENCLOSURE_COMPONENT_ARRAY_DEVICE) {
|
||||||
|
|
||||||
|
if (create)
|
||||||
|
ecomp = enclosure_component_register(edev,
|
||||||
|
components++,
|
||||||
|
type_ptr[0],
|
||||||
|
name);
|
||||||
|
else
|
||||||
|
ecomp = &edev->component[components++];
|
||||||
|
|
||||||
|
if (!IS_ERR(ecomp) && addl_desc_ptr)
|
||||||
|
ses_process_descriptor(ecomp,
|
||||||
|
addl_desc_ptr);
|
||||||
|
}
|
||||||
|
if (desc_ptr)
|
||||||
|
desc_ptr += len;
|
||||||
|
|
||||||
|
if (addl_desc_ptr)
|
||||||
|
addl_desc_ptr += addl_desc_ptr[1] + 2;
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
kfree(buf);
|
||||||
|
kfree(hdr_buf);
|
||||||
|
}
|
||||||
|
|
||||||
static void ses_match_to_enclosure(struct enclosure_device *edev,
|
static void ses_match_to_enclosure(struct enclosure_device *edev,
|
||||||
struct scsi_device *sdev)
|
struct scsi_device *sdev)
|
||||||
{
|
{
|
||||||
|
@ -361,6 +452,8 @@ static void ses_match_to_enclosure(struct enclosure_device *edev,
|
||||||
if (!buf)
|
if (!buf)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
|
ses_enclosure_data_process(edev, to_scsi_device(edev->edev.parent), 0);
|
||||||
|
|
||||||
vpd_len = ((buf[2] << 8) | buf[3]) + 4;
|
vpd_len = ((buf[2] << 8) | buf[3]) + 4;
|
||||||
|
|
||||||
desc = buf + 4;
|
desc = buf + 4;
|
||||||
|
@ -395,18 +488,15 @@ static void ses_match_to_enclosure(struct enclosure_device *edev,
|
||||||
kfree(buf);
|
kfree(buf);
|
||||||
}
|
}
|
||||||
|
|
||||||
#define INIT_ALLOC_SIZE 32
|
|
||||||
|
|
||||||
static int ses_intf_add(struct device *cdev,
|
static int ses_intf_add(struct device *cdev,
|
||||||
struct class_interface *intf)
|
struct class_interface *intf)
|
||||||
{
|
{
|
||||||
struct scsi_device *sdev = to_scsi_device(cdev->parent);
|
struct scsi_device *sdev = to_scsi_device(cdev->parent);
|
||||||
struct scsi_device *tmp_sdev;
|
struct scsi_device *tmp_sdev;
|
||||||
unsigned char *buf = NULL, *hdr_buf, *type_ptr, *desc_ptr = NULL,
|
unsigned char *buf = NULL, *hdr_buf, *type_ptr;
|
||||||
*addl_desc_ptr = NULL;
|
|
||||||
struct ses_device *ses_dev;
|
struct ses_device *ses_dev;
|
||||||
u32 result;
|
u32 result;
|
||||||
int i, j, types, len, page7_len = 0, components = 0;
|
int i, types, len, components = 0;
|
||||||
int err = -ENOMEM;
|
int err = -ENOMEM;
|
||||||
struct enclosure_device *edev;
|
struct enclosure_device *edev;
|
||||||
struct ses_component *scomp = NULL;
|
struct ses_component *scomp = NULL;
|
||||||
|
@ -501,6 +591,7 @@ static int ses_intf_add(struct device *cdev,
|
||||||
ses_dev->page10_len = len;
|
ses_dev->page10_len = len;
|
||||||
buf = NULL;
|
buf = NULL;
|
||||||
}
|
}
|
||||||
|
kfree(hdr_buf);
|
||||||
|
|
||||||
scomp = kzalloc(sizeof(struct ses_component) * components, GFP_KERNEL);
|
scomp = kzalloc(sizeof(struct ses_component) * components, GFP_KERNEL);
|
||||||
if (!scomp)
|
if (!scomp)
|
||||||
|
@ -517,72 +608,7 @@ static int ses_intf_add(struct device *cdev,
|
||||||
for (i = 0; i < components; i++)
|
for (i = 0; i < components; i++)
|
||||||
edev->component[i].scratch = scomp + i;
|
edev->component[i].scratch = scomp + i;
|
||||||
|
|
||||||
/* Page 7 for the descriptors is optional */
|
ses_enclosure_data_process(edev, sdev, 1);
|
||||||
result = ses_recv_diag(sdev, 7, hdr_buf, INIT_ALLOC_SIZE);
|
|
||||||
if (result)
|
|
||||||
goto simple_populate;
|
|
||||||
|
|
||||||
page7_len = len = (hdr_buf[2] << 8) + hdr_buf[3] + 4;
|
|
||||||
/* add 1 for trailing '\0' we'll use */
|
|
||||||
buf = kzalloc(len + 1, GFP_KERNEL);
|
|
||||||
if (!buf)
|
|
||||||
goto simple_populate;
|
|
||||||
result = ses_recv_diag(sdev, 7, buf, len);
|
|
||||||
if (result) {
|
|
||||||
simple_populate:
|
|
||||||
kfree(buf);
|
|
||||||
buf = NULL;
|
|
||||||
desc_ptr = NULL;
|
|
||||||
addl_desc_ptr = NULL;
|
|
||||||
} else {
|
|
||||||
desc_ptr = buf + 8;
|
|
||||||
len = (desc_ptr[2] << 8) + desc_ptr[3];
|
|
||||||
/* skip past overall descriptor */
|
|
||||||
desc_ptr += len + 4;
|
|
||||||
if (ses_dev->page10)
|
|
||||||
addl_desc_ptr = ses_dev->page10 + 8;
|
|
||||||
}
|
|
||||||
type_ptr = ses_dev->page1 + 12 + ses_dev->page1[11];
|
|
||||||
components = 0;
|
|
||||||
for (i = 0; i < types; i++, type_ptr += 4) {
|
|
||||||
for (j = 0; j < type_ptr[1]; j++) {
|
|
||||||
char *name = NULL;
|
|
||||||
struct enclosure_component *ecomp;
|
|
||||||
|
|
||||||
if (desc_ptr) {
|
|
||||||
if (desc_ptr >= buf + page7_len) {
|
|
||||||
desc_ptr = NULL;
|
|
||||||
} else {
|
|
||||||
len = (desc_ptr[2] << 8) + desc_ptr[3];
|
|
||||||
desc_ptr += 4;
|
|
||||||
/* Add trailing zero - pushes into
|
|
||||||
* reserved space */
|
|
||||||
desc_ptr[len] = '\0';
|
|
||||||
name = desc_ptr;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if (type_ptr[0] == ENCLOSURE_COMPONENT_DEVICE ||
|
|
||||||
type_ptr[0] == ENCLOSURE_COMPONENT_ARRAY_DEVICE) {
|
|
||||||
|
|
||||||
ecomp = enclosure_component_register(edev,
|
|
||||||
components++,
|
|
||||||
type_ptr[0],
|
|
||||||
name);
|
|
||||||
|
|
||||||
if (!IS_ERR(ecomp) && addl_desc_ptr)
|
|
||||||
ses_process_descriptor(ecomp,
|
|
||||||
addl_desc_ptr);
|
|
||||||
}
|
|
||||||
if (desc_ptr)
|
|
||||||
desc_ptr += len;
|
|
||||||
|
|
||||||
if (addl_desc_ptr)
|
|
||||||
addl_desc_ptr += addl_desc_ptr[1] + 2;
|
|
||||||
|
|
||||||
}
|
|
||||||
}
|
|
||||||
kfree(buf);
|
|
||||||
kfree(hdr_buf);
|
|
||||||
|
|
||||||
/* see if there are any devices matching before
|
/* see if there are any devices matching before
|
||||||
* we found the enclosure */
|
* we found the enclosure */
|
||||||
|
|
Loading…
Reference in a new issue