Re: [dpdk-dev] [PATCH v2] net/enic: fix uninitialized variable

2018-04-18 Thread Ferruh Yigit
On 4/18/2018 1:00 AM, John Daley wrote: > A local variable was used without initialization and triggered a > coverity issue. > > Is is fixed here, but there is no ill effect of not initializing > the variable in this case. 'rxq_interrupt_offset' is irrelevant > if 'rxq_interrupt_enable' is not set

[dpdk-dev] [PATCH v2] net/enic: fix uninitialized variable

2018-04-17 Thread John Daley
A local variable was used without initialization and triggered a coverity issue. Is is fixed here, but there is no ill effect of not initializing the variable in this case. 'rxq_interrupt_offset' is irrelevant if 'rxq_interrupt_enable' is not set (the condition caught by coverity). Fixes: fc2c8c0