From: Bobby Powers Date: Wed, 22 Feb 2012 05:29:47 +0000 (-0500) Subject: fs: Fix close_on_exec pointer in alloc_fdtable X-Git-Tag: v3.4-rc1~33^2~11^2 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f044db4cb4bf16893812d35b5fbeaaf3e30c9215;p=pandora-kernel.git fs: Fix close_on_exec pointer in alloc_fdtable alloc_fdtable allocates space for the open_fds and close_on_exec bitfields together, as 2 * nr / BITS_PER_BYTE. close_on_exec needs to point to open_fds + nr / BITS_PER_BYTE, not open_fds + nr / BITS_PER_LONG, as introducted in 1fd36adc: Replace the fd_sets in struct fdtable with an array of unsigned longs. Signed-off-by: Bobby Powers Link: http://lkml.kernel.org/r/1329888587-3087-1-git-send-email-bobbypowers@gmail.com Acked-by: David Howells Signed-off-by: H. Peter Anvin --- Reading git-diff-tree failed