Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 254425
b: refs/heads/master
c: a3d568f
h: refs/heads/master
i:
  254423: eafb844
v: v3
  • Loading branch information
Dan Williams committed Jul 3, 2011
1 parent b9b8988 commit 7cadf65
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 12 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 00d680ef84570bc7aea023772d27e85b0052004c
refs/heads/master: a3d568f0dfbb6bc786df04ad13e0b401f80e614c
3 changes: 0 additions & 3 deletions trunk/drivers/scsi/isci/remote_device.c
Original file line number Diff line number Diff line change
Expand Up @@ -1501,8 +1501,6 @@ static enum sci_status scic_remote_device_da_construct(struct scic_sds_port *sci

sci_dev->rnc.remote_node_index = remote_node_index;

scic_sds_port_get_attached_sas_address(sci_port, &sci_dev->device_address);

if (dev->dev_type == SAS_END_DEV)
sci_dev->has_ready_substate_machine = false;
else if (dev->dev_type == SATA_DEV || (dev->tproto & SAS_PROTOCOL_STP)) {
Expand Down Expand Up @@ -1553,7 +1551,6 @@ static enum sci_status scic_remote_device_ea_construct(struct scic_sds_port *sci
enum sci_status status;

scic_remote_device_construct(sci_port, sci_dev);
memcpy(&sci_dev->device_address, dev->sas_addr, SAS_ADDR_SIZE);

status = scic_sds_controller_allocate_remote_node_context(
scic, sci_dev, &sci_dev->rnc.remote_node_index);
Expand Down
5 changes: 0 additions & 5 deletions trunk/drivers/scsi/isci/remote_device.h
Original file line number Diff line number Diff line change
Expand Up @@ -99,11 +99,6 @@ struct scic_sds_remote_device {
*/
enum sas_linkrate connection_rate;

/**
* This field contains the device SAS address.
*/
struct sci_sas_address device_address;

/**
* This filed is assinged the value of true if the device is directly
* attached to the port.
Expand Down
8 changes: 5 additions & 3 deletions trunk/drivers/scsi/isci/remote_node_context.c
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,7 @@ static void scic_sds_remote_node_context_construct_buffer(
struct domain_device *dev = sci_dev_to_domain(sci_dev);
union scu_remote_node_context *rnc;
struct scic_sds_controller *scic;
__le64 sas_addr;

scic = scic_sds_remote_device_get_controller(sci_dev);

Expand All @@ -124,9 +125,10 @@ static void scic_sds_remote_node_context_construct_buffer(
rnc->ssp.logical_port_index =
scic_sds_remote_device_get_port_index(sci_dev);

/* address is always big endian, destination is always little */
rnc->ssp.remote_sas_address_hi = swab32(sci_dev->device_address.high);
rnc->ssp.remote_sas_address_lo = swab32(sci_dev->device_address.low);
/* sas address is __be64, context ram format is __le64 */
sas_addr = cpu_to_le64(SAS_ADDR(dev->sas_addr));
rnc->ssp.remote_sas_address_hi = upper_32_bits(sas_addr);
rnc->ssp.remote_sas_address_lo = lower_32_bits(sas_addr);

rnc->ssp.nexus_loss_timer_enable = true;
rnc->ssp.check_bit = false;
Expand Down

0 comments on commit 7cadf65

Please sign in to comment.