mirror of
https://github.com/torvalds/linux.git
synced 2024-12-28 13:51:44 +00:00
liquidio: softcommand delay
This patch updates the delay constant for softcommands in accrodance with new requirements. Signed-off-by: Derek Chickles <derek.chickles@caviumnetworks.com> Signed-off-by: Satanand Burla <satananda.burla@caviumnetworks.com> Signed-off-by: Felix Manlunas <felix.manlunas@caviumnetworks.com> Signed-off-by: Raghu Vatsavayi <raghu.vatsavayi@caviumnetworks.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
14866ccd8f
commit
55893a63d1
@ -3555,7 +3555,7 @@ static int setup_nic_devices(struct octeon_device *octeon_dev)
|
||||
|
||||
sc->callback = if_cfg_callback;
|
||||
sc->callback_arg = sc;
|
||||
sc->wait_time = 1000;
|
||||
sc->wait_time = 3000;
|
||||
|
||||
retval = octeon_send_soft_command(octeon_dev, sc);
|
||||
if (retval == IQ_SEND_FAILED) {
|
||||
|
@ -523,9 +523,10 @@ static void check_db_timeout(struct work_struct *work)
|
||||
struct octeon_device *oct = (struct octeon_device *)wk->ctxptr;
|
||||
unsigned long iq_no = wk->ctxul;
|
||||
struct cavium_wq *db_wq = &oct->check_db_wq[iq_no];
|
||||
u32 delay = 10;
|
||||
|
||||
__check_db_timeout(oct, iq_no);
|
||||
queue_delayed_work(db_wq->wq, &db_wq->wk.work, msecs_to_jiffies(1));
|
||||
queue_delayed_work(db_wq->wq, &db_wq->wk.work, msecs_to_jiffies(delay));
|
||||
}
|
||||
|
||||
int
|
||||
|
@ -52,7 +52,7 @@ int octeon_setup_response_list(struct octeon_device *oct)
|
||||
INIT_DELAYED_WORK(&cwq->wk.work, oct_poll_req_completion);
|
||||
cwq->wk.ctxptr = oct;
|
||||
oct->cmd_resp_state = OCT_DRV_ONLINE;
|
||||
queue_delayed_work(cwq->wq, &cwq->wk.work, msecs_to_jiffies(100));
|
||||
queue_delayed_work(cwq->wq, &cwq->wk.work, msecs_to_jiffies(50));
|
||||
|
||||
return ret;
|
||||
}
|
||||
@ -162,6 +162,5 @@ static void oct_poll_req_completion(struct work_struct *work)
|
||||
struct cavium_wq *cwq = &oct->dma_comp_wq;
|
||||
|
||||
lio_process_ordered_list(oct, 0);
|
||||
|
||||
queue_delayed_work(cwq->wq, &cwq->wk.work, msecs_to_jiffies(100));
|
||||
queue_delayed_work(cwq->wq, &cwq->wk.work, msecs_to_jiffies(50));
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user