Skip to content
Commit f044db4c authored by Bobby Powers's avatar Bobby Powers Committed by H. Peter Anvin
Browse files

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: default avatarBobby Powers <bobbypowers@gmail.com>
Link: http://lkml.kernel.org/r/1329888587-3087-1-git-send-email-bobbypowers@gmail.com


Acked-by: default avatarDavid Howells <dhowells@redhat.com>
Signed-off-by: default avatarH. Peter Anvin <hpa@zytor.com>
parent cf420048
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment