svn commit: r239522 - stable/9/sys/dev/cxgb/ulp/iw_cxgb
Dimitry Andric
dim at FreeBSD.org
Tue Aug 21 19:19:29 UTC 2012
Author: dim
Date: Tue Aug 21 19:19:29 2012
New Revision: 239522
URL: http://svn.freebsd.org/changeset/base/239522
Log:
MFC r239101:
In cxgb(4), in function iwch_reregister_phys_mem(), initialize the
'npages' variable to zero, to avoid using it uninitialized in certain
cases.
Found by: clang 3.2
Reviewed by: np
Modified:
stable/9/sys/dev/cxgb/ulp/iw_cxgb/iw_cxgb_provider.c
Directory Properties:
stable/9/sys/ (props changed)
Modified: stable/9/sys/dev/cxgb/ulp/iw_cxgb/iw_cxgb_provider.c
==============================================================================
--- stable/9/sys/dev/cxgb/ulp/iw_cxgb/iw_cxgb_provider.c Tue Aug 21 19:13:53 2012 (r239521)
+++ stable/9/sys/dev/cxgb/ulp/iw_cxgb/iw_cxgb_provider.c Tue Aug 21 19:19:29 2012 (r239522)
@@ -487,7 +487,7 @@ static int iwch_reregister_phys_mem(stru
__be64 *page_list = NULL;
int shift = 0;
u64 total_size;
- int npages;
+ int npages = 0;
int ret;
CTR3(KTR_IW_CXGB, "%s ib_mr %p ib_pd %p", __FUNCTION__, mr, pd);
More information about the svn-src-stable-9
mailing list