Skip to content

Commit

Permalink
isci: fix "no outbound task timeout" default value
Browse files Browse the repository at this point in the history
The default should be 5us.  The hardware encodes it in 256ns increments,
so the value should be 20 to approximate a 5us timeout.

Signed-off-by: Tomasz Chudy <Tomasz.Chudy@intel.com>
Signed-off-by: Jacek Danecki <Jacek.Danecki@intel.com>
Signed-off-by: Dan Williams <dan.j.williams@intel.com>
  • Loading branch information
Tomasz Chudy authored and Dan Williams committed Jul 3, 2011
1 parent 8f31550 commit 06fdb32
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions drivers/scsi/isci/core/scic_sds_controller.c
Original file line number Diff line number Diff line change
Expand Up @@ -1997,8 +1997,7 @@ static void scic_sds_controller_set_default_config_parameters(
this_controller->user_parameters.sds1.ssp_inactivity_timeout = 5;
this_controller->user_parameters.sds1.stp_max_occupancy_timeout = 5;
this_controller->user_parameters.sds1.ssp_max_occupancy_timeout = 20;
this_controller->user_parameters.sds1.no_outbound_task_timeout = 5;

this_controller->user_parameters.sds1.no_outbound_task_timeout = 20;
}


Expand Down

0 comments on commit 06fdb32

Please sign in to comment.