提交 8a994a04 编写于 作者: K Kevin Barnett 提交者: Martin K. Petersen

scsi: smartpqi: cleanup list initialization

Better initialization of linked list heads.
Reviewed-by: NScott Benesh <scott.benesh@microsemi.com>
Signed-off-by: NKevin Barnett <kevin.barnett@microsemi.com>
Signed-off-by: NDon Brace <don.brace@microsemi.com>
Signed-off-by: NMartin K. Petersen <martin.petersen@oracle.com>
上级 a9f93392
......@@ -1591,11 +1591,8 @@ static void pqi_update_device_list(struct pqi_ctrl_info *ctrl_info,
struct pqi_scsi_dev *device;
struct pqi_scsi_dev *next;
struct pqi_scsi_dev *matching_device;
struct list_head add_list;
struct list_head delete_list;
INIT_LIST_HEAD(&add_list);
INIT_LIST_HEAD(&delete_list);
LIST_HEAD(add_list);
LIST_HEAD(delete_list);
/*
* The idea here is to do as little work as possible while holding the
......@@ -1755,7 +1752,7 @@ static int pqi_update_scsi_devices(struct pqi_ctrl_info *ctrl_info)
{
int i;
int rc;
struct list_head new_device_list_head;
LIST_HEAD(new_device_list_head);
struct report_phys_lun_extended *physdev_list = NULL;
struct report_log_lun_extended *logdev_list = NULL;
struct report_phys_lun_extended_entry *phys_lun_ext_entry;
......@@ -1773,8 +1770,6 @@ static int pqi_update_scsi_devices(struct pqi_ctrl_info *ctrl_info)
static char *out_of_memory_msg =
"failed to allocate memory, device discovery stopped";
INIT_LIST_HEAD(&new_device_list_head);
rc = pqi_get_device_lists(ctrl_info, &physdev_list, &logdev_list);
if (rc)
goto out;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册