From mboxrd@z Thu Jan 1 00:00:00 1970 From: Bernard Iremonger Subject: [RFC PATCH 3/4] librte_pmd_i40e: increase ASQ_DELAY_MS to 100 in i40evf_wait_cmd_done() Date: Thu, 30 Apr 2015 16:42:06 +0100 Message-ID: <1430408526-17822-1-git-send-email-bernard.iremonger@intel.com> References: To: dev-VfR2kkLFssw@public.gmane.org Return-path: In-Reply-To: List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces-VfR2kkLFssw@public.gmane.org Sender: "dev" Increase delay to avoid i40evf_read_pfmsg() failures. Signed-off-by: Bernard Iremonger --- lib/librte_pmd_i40e/i40e_ethdev_vf.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/lib/librte_pmd_i40e/i40e_ethdev_vf.c b/lib/librte_pmd_i40e/i40e_ethdev_vf.c index 7c5b3f5..af45064 100644 --- a/lib/librte_pmd_i40e/i40e_ethdev_vf.c +++ b/lib/librte_pmd_i40e/i40e_ethdev_vf.c @@ -299,7 +299,7 @@ i40evf_wait_cmd_done(struct rte_eth_dev *dev, enum i40evf_aq_result ret; #define MAX_TRY_TIMES 10 -#define ASQ_DELAY_MS 50 +#define ASQ_DELAY_MS 100 do { /* Delay some time first */ rte_delay_ms(ASQ_DELAY_MS); -- 1.7.4.1