The patch titled Subject: pagemap.h: fix warning about possibly used before init var has been removed from the -mm tree. Its filename was pagemaph-fix-warning-about-possibly-used-before-init-var.patch This patch was dropped because it was merged into mainline or a subsystem tree The current -mm tree may be found at http://userweb.kernel.org/~akpm/mmotm/ ------------------------------------------------------ From: Paul Gortmaker <paul.gortmaker@xxxxxxxxxxxxx> Subject: pagemap.h: fix warning about possibly used before init var Commit f56f821feb7b36223f309e0ec05986bb137ce418 (linux-next) "mm: extend prefault helpers to fault in more than PAGE_SIZE" added in the new functions: fault_in_multipages_writeable fault_in_multipages_readable However, we currently see: include/linux/pagemap.h:492: warning: 'ret' may be used uninitialized in this function include/linux/pagemap.h:492: note: 'ret' was declared here Unlike a lot of gcc nags, this one appears somewhat legit. i.e. passing in an invalid negative value of "size" does make it look like all the conditionals in there would be bypassed and the uninitialized value would be returned. Signed-off-by: Paul Gortmaker <paul.gortmaker@xxxxxxxxxxxxx> Cc: Daniel Vetter <daniel.vetter@xxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- include/linux/pagemap.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff -puN include/linux/pagemap.h~pagemaph-fix-warning-about-possibly-used-before-init-var include/linux/pagemap.h --- a/include/linux/pagemap.h~pagemaph-fix-warning-about-possibly-used-before-init-var +++ a/include/linux/pagemap.h @@ -460,11 +460,11 @@ static inline int fault_in_pages_readabl */ static inline int fault_in_multipages_writeable(char __user *uaddr, int size) { - int ret; + int ret = 0; char __user *end = uaddr + size - 1; if (unlikely(size == 0)) - return 0; + return ret; /* * Writing zeroes into userspace here is OK, because we know that if @@ -489,11 +489,11 @@ static inline int fault_in_multipages_re int size) { volatile char c; - int ret; + int ret = 0; const char __user *end = uaddr + size - 1; if (unlikely(size == 0)) - return 0; + return ret; while (uaddr <= end) { ret = __get_user(c, uaddr); _ Patches currently in -mm which might be from paul.gortmaker@xxxxxxxxxxxxx are origin.patch linux-next.patch time-dont-inline-export_symbol-functions.patch locking-add-kern_cont-when-needed-to-self-test.patch sethostname-setdomainname-notify-userspace-when-there-is-a-change-in-uts_kern_table.patch rapidio-add-dma-engine-support-for-rio-data-transfers.patch rapidio-tsi721-add-dma-engine-support.patch -- To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html