Skip to content

Commit

Permalink
isci: unify remote_device data structures
Browse files Browse the repository at this point in the history
Make it explicit that isci_remote_device and scic_sds_remote_device are
one in the same object.

Signed-off-by: Dan Williams <dan.j.williams@intel.com>
  • Loading branch information
Dan Williams committed Jul 3, 2011
1 parent 9614395 commit 57f20f4
Show file tree
Hide file tree
Showing 9 changed files with 28 additions and 75 deletions.
12 changes: 0 additions & 12 deletions drivers/scsi/isci/core/scic_remote_device.h
Original file line number Diff line number Diff line change
Expand Up @@ -86,18 +86,6 @@ enum scic_remote_device_not_ready_reason_code {

};

/**
* scic_remote_device_get_object_size() - This method simply returns the
* maximum memory space needed to store a remote device object.
*
* a positive integer value indicating the size (in bytes) of the remote device
* object.
*/
u32 scic_remote_device_get_object_size(
void);

struct scic_sds_port;
struct scic_sds_remote_device;
/**
* scic_remote_device_construct() - This method will perform the construction
* common to all remote device objects.
Expand Down
15 changes: 0 additions & 15 deletions drivers/scsi/isci/core/scic_sds_remote_device.c
Original file line number Diff line number Diff line change
Expand Up @@ -71,21 +71,6 @@

#define SCIC_SDS_REMOTE_DEVICE_RESET_TIMEOUT (1000)

/*
* *****************************************************************************
* * CORE REMOTE DEVICE PRIVATE METHODS
* ***************************************************************************** */

/*
* *****************************************************************************
* * CORE REMOTE DEVICE PUBLIC METHODS
* ***************************************************************************** */

u32 scic_remote_device_get_object_size(void)
{
return sizeof (struct scic_sds_remote_device);
}

enum sci_status scic_remote_device_da_construct(
struct scic_sds_remote_device *sci_dev)
{
Expand Down
2 changes: 1 addition & 1 deletion drivers/scsi/isci/host.c
Original file line number Diff line number Diff line change
Expand Up @@ -467,7 +467,7 @@ int isci_host_init(struct isci_host *isci_host)
isci_phy_init(&isci_host->phys[i], isci_host, i);

for (i = 0; i < SCI_MAX_REMOTE_DEVICES; i++) {
struct isci_remote_device *idev = idev_by_id(isci_host, i);
struct isci_remote_device *idev = &isci_host->devices[i];

INIT_LIST_HEAD(&idev->reqs_in_process);
INIT_LIST_HEAD(&idev->node);
Expand Down
11 changes: 1 addition & 10 deletions drivers/scsi/isci/host.h
Original file line number Diff line number Diff line change
Expand Up @@ -110,18 +110,9 @@ struct isci_host {
struct list_head requests_to_errorback;
spinlock_t scic_lock;

/* careful only access this via idev_by_id */
struct isci_remote_device devices[0];
struct isci_remote_device devices[SCI_MAX_REMOTE_DEVICES];
};

static inline struct isci_remote_device *idev_by_id(struct isci_host *ihost, int i)
{
void *p = ihost->devices;

return p + i * (sizeof(struct isci_remote_device) +
scic_remote_device_get_object_size());
}

/**
* struct isci_pci_info - This class represents the pci function containing the
* controllers. Depending on PCI SKU, there could be up to 2 controllers in
Expand Down
5 changes: 1 addition & 4 deletions drivers/scsi/isci/init.c
Original file line number Diff line number Diff line change
Expand Up @@ -396,10 +396,7 @@ static struct isci_host *isci_host_alloc(struct pci_dev *pdev, int id)
struct Scsi_Host *shost;
int err;

isci_host = devm_kzalloc(&pdev->dev, sizeof(*isci_host) +
SCI_MAX_REMOTE_DEVICES *
(sizeof(struct isci_remote_device) +
scic_remote_device_get_object_size()), GFP_KERNEL);
isci_host = devm_kzalloc(&pdev->dev, sizeof(*isci_host), GFP_KERNEL);
if (!isci_host)
return NULL;

Expand Down
17 changes: 9 additions & 8 deletions drivers/scsi/isci/remote_device.c
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ static void isci_remote_device_deconstruct(struct isci_host *ihost, struct isci_
BUG();
}

scic_remote_device_destruct(to_sci_dev(idev));
scic_remote_device_destruct(&idev->sci);
idev->domain_dev->lldd_dev = NULL;
idev->domain_dev = NULL;
idev->isci_port = NULL;
Expand Down Expand Up @@ -117,7 +117,7 @@ static enum sci_status isci_remote_device_construct(

/* let the core do it's common constuction. */
scic_remote_device_construct(port->sci_port_handle,
to_sci_dev(isci_device));
&isci_device->sci);

/* let the core do it's device specific constuction. */
if (isci_device->domain_dev->parent &&
Expand Down Expand Up @@ -183,11 +183,11 @@ static enum sci_status isci_remote_device_construct(
"%s: parent->dev_type = EDGE_DEV\n",
__func__);

status = scic_remote_device_ea_construct(to_sci_dev(isci_device),
status = scic_remote_device_ea_construct(&isci_device->sci,
(struct smp_response_discover *)&discover_response);

} else
status = scic_remote_device_da_construct(to_sci_dev(isci_device));
status = scic_remote_device_da_construct(&isci_device->sci);


if (status != SCI_SUCCESS) {
Expand All @@ -200,10 +200,11 @@ static enum sci_status isci_remote_device_construct(
return status;
}

sci_object_set_association(to_sci_dev(isci_device), isci_device);
/* XXX will be killed with sci_base_object removal */
sci_object_set_association(&isci_device->sci, isci_device);

/* start the device. */
status = scic_remote_device_start(to_sci_dev(isci_device),
status = scic_remote_device_start(&isci_device->sci,
ISCI_REMOTE_DEVICE_START_TIMEOUT);

if (status != SCI_SUCCESS) {
Expand Down Expand Up @@ -245,7 +246,7 @@ isci_remote_device_alloc(struct isci_host *ihost, struct isci_port *iport)
int i;

for (i = 0; i < SCI_MAX_REMOTE_DEVICES; i++) {
idev = idev_by_id(ihost, i);
idev = &ihost->devices[i];
if (!test_and_set_bit(IDEV_ALLOCATED, &idev->flags))
break;
}
Expand Down Expand Up @@ -374,7 +375,7 @@ enum sci_status isci_remote_device_stop(struct isci_host *ihost, struct isci_rem
set_bit(IDEV_STOP_PENDING, &idev->flags);

spin_lock_irqsave(&ihost->scic_lock, flags);
status = scic_remote_device_stop(to_sci_dev(idev), 50);
status = scic_remote_device_stop(&idev->sci, 50);
spin_unlock_irqrestore(&ihost->scic_lock, flags);

/* Wait for the stop complete callback. */
Expand Down
9 changes: 2 additions & 7 deletions drivers/scsi/isci/remote_device.h
Original file line number Diff line number Diff line change
Expand Up @@ -55,9 +55,9 @@

#if !defined(_ISCI_REMOTE_DEVICE_H_)
#define _ISCI_REMOTE_DEVICE_H_
#include "scic_sds_remote_device.h"

struct isci_host;
struct scic_sds_remote_device;

struct isci_remote_device {
enum isci_status status;
Expand All @@ -70,14 +70,9 @@ struct isci_remote_device {
struct list_head node;
struct list_head reqs_in_process;
spinlock_t state_lock;
struct scic_sds_remote_device sci;
};

static inline struct scic_sds_remote_device *to_sci_dev(struct isci_remote_device *idev)
{
/* core data is an opaque buffer at the end of the idev */
return (struct scic_sds_remote_device *) &idev[1];
}

#define ISCI_REMOTE_DEVICE_START_TIMEOUT 5000

void isci_remote_device_start_complete(struct isci_host *ihost,
Expand Down
12 changes: 5 additions & 7 deletions drivers/scsi/isci/request.c
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ static enum sci_status isci_io_request_build(
struct smp_discover_response_protocols dev_protocols;
enum sci_status status = SCI_SUCCESS;
struct sas_task *task = isci_request_access_task(request);
struct scic_sds_remote_device *sci_device = to_sci_dev(isci_device);
struct scic_sds_remote_device *sci_device = &isci_device->sci;

dev_dbg(&isci_host->pdev->dev,
"%s: isci_device = 0x%p; request = %p, "
Expand Down Expand Up @@ -380,7 +380,7 @@ int isci_request_execute(
unsigned long flags;

isci_device = task->dev->lldd_dev;
sci_device = to_sci_dev(isci_device);
sci_device = &isci_device->sci;

/* do common allocation and init of request object. */
ret = isci_request_alloc_io(
Expand Down Expand Up @@ -1194,11 +1194,9 @@ void isci_request_io_request_complete(
);

/* complete the io request to the core. */
scic_controller_complete_io(
isci_host->core_controller,
to_sci_dev(isci_device),
request->sci_request_handle
);
scic_controller_complete_io(isci_host->core_controller,
&isci_device->sci,
request->sci_request_handle);
/* NULL the request handle so it cannot be completed or
* terminated again, and to cause any calls into abort
* task to recognize the already completed case.
Expand Down
20 changes: 9 additions & 11 deletions drivers/scsi/isci/task.c
Original file line number Diff line number Diff line change
Expand Up @@ -282,7 +282,7 @@ static enum sci_status isci_task_request_build(
"%s: isci_tmf = %p\n", __func__, isci_tmf);

isci_device = isci_tmf->device;
sci_device = to_sci_dev(isci_device);
sci_device = &isci_device->sci;

/* do common allocation and init of request object. */
status = isci_request_alloc_tmf(
Expand Down Expand Up @@ -390,7 +390,7 @@ static void isci_tmf_timeout_cb(void *tmf_request_arg)
/* Terminate the TMF transmit request. */
status = scic_controller_terminate_request(
request->isci_host->core_controller,
to_sci_dev(request->isci_device),
&request->isci_device->sci,
request->sci_request_handle
);

Expand Down Expand Up @@ -448,7 +448,7 @@ int isci_task_execute_tmf(
"%s: isci_device = %p\n",
__func__, isci_device);

sci_device = to_sci_dev(isci_device);
sci_device = &isci_device->sci;

/* Assign the pointer to the TMF's completion kernel wait structure. */
tmf->complete = &completion;
Expand Down Expand Up @@ -784,9 +784,8 @@ static void isci_terminate_request_core(
needs_cleanup_handling = true;
status = scic_controller_terminate_request(
isci_host->core_controller,
to_sci_dev(isci_device),
isci_request->sci_request_handle
);
&isci_device->sci,
isci_request->sci_request_handle);
}
spin_unlock_irqrestore(&isci_host->scic_lock, flags);

Expand Down Expand Up @@ -1483,9 +1482,8 @@ void isci_task_request_complete(

scic_controller_complete_io(
isci_host->core_controller,
to_sci_dev(isci_device),
request->sci_request_handle
);
&isci_device->sci,
request->sci_request_handle);
/* NULL the request handle to make sure it cannot be terminated
* or completed again.
*/
Expand Down Expand Up @@ -1611,7 +1609,7 @@ int isci_bus_reset_handler(struct scsi_cmnd *cmd)
}

spin_lock_irqsave(&isci_host->scic_lock, flags);
status = scic_remote_device_reset(to_sci_dev(isci_dev));
status = scic_remote_device_reset(&isci_dev->sci);
if (status != SCI_SUCCESS) {
spin_unlock_irqrestore(&isci_host->scic_lock, flags);

Expand Down Expand Up @@ -1645,7 +1643,7 @@ int isci_bus_reset_handler(struct scsi_cmnd *cmd)

/* WHAT TO DO HERE IF sas_phy_reset FAILS? */
spin_lock_irqsave(&isci_host->scic_lock, flags);
status = scic_remote_device_reset_complete(to_sci_dev(isci_dev));
status = scic_remote_device_reset_complete(&isci_dev->sci);
spin_unlock_irqrestore(&isci_host->scic_lock, flags);

if (status != SCI_SUCCESS) {
Expand Down

0 comments on commit 57f20f4

Please sign in to comment.