Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit c0a88032 authored by Nicholas Mc Guire's avatar Nicholas Mc Guire Committed by Jon Mason
Browse files

ntb_transport: make DMA_OUT_RESOURCE_TO HZ independent



schedule_timeout_* takes a timeout in jiffies but the code currently is
passing in a constant which makes this timeout HZ dependent, so pass it
through msecs_to_jiffies() to fix this up.

Signed-off-by: default avatarNicholas Mc Guire <hofrat@osadl.org>
Signed-off-by: default avatarJon Mason <jdmason@kudzu.us>
parent 49b89de4
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -257,7 +257,7 @@ enum {
#define NTB_QP_DEF_NUM_ENTRIES	100
#define NTB_LINK_DOWN_TIMEOUT	10
#define DMA_RETRIES		20
#define DMA_OUT_RESOURCE_TO	50
#define DMA_OUT_RESOURCE_TO	msecs_to_jiffies(50)

static void ntb_transport_rxc_db(unsigned long data);
static const struct ntb_ctx_ops ntb_transport_ops;