diff options
author | misaki <none@none> | 2007-03-30 16:18:11 -0700 |
---|---|---|
committer | misaki <none@none> | 2007-03-30 16:18:11 -0700 |
commit | 623cc4421f2b351089438cb912f6d8b9f2fd3e6c (patch) | |
tree | d2376b34b271d9eb270ae9ec22f88c8a073a740b | |
parent | 789ba267e4ebc05727329e0351a5c1a8243e962b (diff) | |
download | illumos-joyent-623cc4421f2b351089438cb912f6d8b9f2fd3e6c.tar.gz |
6538476 Some kef_api test cases fail on the n2cp provider
6535844 crypto test times out on a busy system (SunVTS)
-rw-r--r-- | usr/src/uts/sun4v/sys/n2cp.h | 2 | ||||
-rw-r--r-- | usr/src/uts/sun4v/sys/ncp.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/usr/src/uts/sun4v/sys/n2cp.h b/usr/src/uts/sun4v/sys/n2cp.h index 35148f1ff1..ab9278c520 100644 --- a/usr/src/uts/sun4v/sys/n2cp.h +++ b/usr/src/uts/sun4v/sys/n2cp.h @@ -136,7 +136,7 @@ typedef struct n2cp_hmac_ctx n2cp_hmac_ctx_t; #define CWQ_QINDEX_INCR(i) (((i) + 1) & CWQ_WRAPMASK) #define CWQ_QINDEX_IS_VALID(i) (((i) >= 0) && ((i) < CWQ_NENTRIES)) -#define N2CP_QTIMEOUT_SECONDS 15 +#define N2CP_QTIMEOUT_SECONDS 60 typedef struct cwq_cwb { cwq_cw_t cb_cw; diff --git a/usr/src/uts/sun4v/sys/ncp.h b/usr/src/uts/sun4v/sys/ncp.h index 90e471ce0e..40610c9527 100644 --- a/usr/src/uts/sun4v/sys/ncp.h +++ b/usr/src/uts/sun4v/sys/ncp.h @@ -298,7 +298,7 @@ struct ncp_stat { #define NCP_QINDEX_INCR(i) (((i) + 1) & NCP_MAQUEUE_WRAPMASK) #define NCP_QINDEX_IS_VALID(i) (((i) >= 0) && \ ((i) < NCP_MAQUEUE_NENTRIES)) -#define NCP_QTIMEOUT_SECONDS 15 +#define NCP_QTIMEOUT_SECONDS 60 typedef struct ncp_ma { kmutex_t nma_lock; |