Skip to content

Commit

Permalink
fs: Fix close_on_exec pointer in alloc_fdtable
Browse files Browse the repository at this point in the history
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 1fd36ad: Replace the fd_sets in
struct fdtable with an array of unsigned longs.

Signed-off-by: Bobby Powers <bobbypowers@gmail.com>
Link: http://lkml.kernel.org/r/1329888587-3087-1-git-send-email-bobbypowers@gmail.com
Acked-by: David Howells <dhowells@redhat.com>
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
  • Loading branch information
bpowers authored and H. Peter Anvin committed Feb 24, 2012
1 parent cf42004 commit f044db4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fs/file.c
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ static struct fdtable * alloc_fdtable(unsigned int nr)
if (!data)
goto out_arr;
fdt->open_fds = data;
data += nr / BITS_PER_LONG;
data += nr / BITS_PER_BYTE;
fdt->close_on_exec = data;
fdt->next = NULL;

Expand Down

0 comments on commit f044db4

Please sign in to comment.