Commit 35ce9e26 authored by Nicholas Bellinger's avatar Nicholas Bellinger Committed by James Bottomley

[SCSI] target: Remove spurious double cast from structure macro accessors

Reported-by: default avatarFubo Chen <fubo.chen@gmail.com>
Cc: James Bottomley <James.Bottomley@suse.de>
Signed-off-by: default avatarNicholas A. Bellinger <nab@linux-iscsi.org>
Signed-off-by: default avatarJames Bottomley <James.Bottomley@suse.de>
parent 5dd7ed2e
...@@ -494,8 +494,8 @@ struct se_task { ...@@ -494,8 +494,8 @@ struct se_task {
struct list_head t_state_list; struct list_head t_state_list;
} ____cacheline_aligned; } ____cacheline_aligned;
#define TASK_CMD(task) ((struct se_cmd *)task->task_se_cmd) #define TASK_CMD(task) ((task)->task_se_cmd)
#define TASK_DEV(task) ((struct se_device *)task->se_dev) #define TASK_DEV(task) ((task)->se_dev)
struct se_cmd { struct se_cmd {
/* SAM response code being sent to initiator */ /* SAM response code being sent to initiator */
...@@ -551,8 +551,8 @@ struct se_cmd { ...@@ -551,8 +551,8 @@ struct se_cmd {
void (*transport_complete_callback)(struct se_cmd *); void (*transport_complete_callback)(struct se_cmd *);
} ____cacheline_aligned; } ____cacheline_aligned;
#define T_TASK(cmd) ((struct se_transport_task *)(cmd->t_task)) #define T_TASK(cmd) ((cmd)->t_task)
#define CMD_TFO(cmd) ((struct target_core_fabric_ops *)cmd->se_tfo) #define CMD_TFO(cmd) ((cmd)->se_tfo)
struct se_tmr_req { struct se_tmr_req {
/* Task Management function to be preformed */ /* Task Management function to be preformed */
...@@ -615,8 +615,8 @@ struct se_session { ...@@ -615,8 +615,8 @@ struct se_session {
struct list_head sess_acl_list; struct list_head sess_acl_list;
} ____cacheline_aligned; } ____cacheline_aligned;
#define SE_SESS(cmd) ((struct se_session *)(cmd)->se_sess) #define SE_SESS(cmd) ((cmd)->se_sess)
#define SE_NODE_ACL(sess) ((struct se_node_acl *)(sess)->se_node_acl) #define SE_NODE_ACL(sess) ((sess)->se_node_acl)
struct se_device; struct se_device;
struct se_transform_info; struct se_transform_info;
...@@ -803,8 +803,8 @@ struct se_device { ...@@ -803,8 +803,8 @@ struct se_device {
struct list_head g_se_dev_list; struct list_head g_se_dev_list;
} ____cacheline_aligned; } ____cacheline_aligned;
#define SE_DEV(cmd) ((struct se_device *)(cmd)->se_lun->lun_se_dev) #define SE_DEV(cmd) ((cmd)->se_lun->lun_se_dev)
#define SU_DEV(dev) ((struct se_subsystem_dev *)(dev)->se_sub_dev) #define SU_DEV(dev) ((dev)->se_sub_dev)
#define DEV_ATTRIB(dev) (&(dev)->se_sub_dev->se_dev_attrib) #define DEV_ATTRIB(dev) (&(dev)->se_sub_dev->se_dev_attrib)
#define DEV_T10_WWN(dev) (&(dev)->se_sub_dev->t10_wwn) #define DEV_T10_WWN(dev) (&(dev)->se_sub_dev->t10_wwn)
...@@ -832,7 +832,7 @@ struct se_hba { ...@@ -832,7 +832,7 @@ struct se_hba {
struct se_subsystem_api *transport; struct se_subsystem_api *transport;
} ____cacheline_aligned; } ____cacheline_aligned;
#define SE_HBA(d) ((struct se_hba *)(d)->se_hba) #define SE_HBA(dev) ((dev)->se_hba)
struct se_lun { struct se_lun {
/* See transport_lun_status_table */ /* See transport_lun_status_table */
...@@ -852,7 +852,7 @@ struct se_lun { ...@@ -852,7 +852,7 @@ struct se_lun {
struct se_port *lun_sep; struct se_port *lun_sep;
} ____cacheline_aligned; } ____cacheline_aligned;
#define SE_LUN(c) ((struct se_lun *)(c)->se_lun) #define SE_LUN(cmd) ((cmd)->se_lun)
struct scsi_port_stats { struct scsi_port_stats {
u64 cmd_pdus; u64 cmd_pdus;
...@@ -919,7 +919,7 @@ struct se_portal_group { ...@@ -919,7 +919,7 @@ struct se_portal_group {
struct config_group tpg_param_group; struct config_group tpg_param_group;
} ____cacheline_aligned; } ____cacheline_aligned;
#define TPG_TFO(se_tpg) ((struct target_core_fabric_ops *)(se_tpg)->se_tpg_tfo) #define TPG_TFO(se_tpg) ((se_tpg)->se_tpg_tfo)
struct se_wwn { struct se_wwn {
struct target_fabric_configfs *wwn_tf; struct target_fabric_configfs *wwn_tf;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment