]> git.baikalelectronics.ru Git - kernel.git/commit
xfs: fallback to vmalloc for large buffers in xfs_attrlist_by_handle
authorEric Sandeen <sandeen@redhat.com>
Thu, 4 Apr 2013 05:05:13 +0000 (00:05 -0500)
committerBen Myers <bpm@sgi.com>
Tue, 7 May 2013 23:56:38 +0000 (18:56 -0500)
commitf7bf018738bd1fccb9c71b28ec7385c63c73a2f6
tree49132456e58a9cd79a74e43954a8dac054db09a3
parent3720cc1db2ddd32beb3394688a4f31c523c84ebb
xfs: fallback to vmalloc for large buffers in xfs_attrlist_by_handle

Shamelessly copied from dchinner's:
9eb2dcae xfs: fallback to vmalloc for large buffers in xfs_attrmulti_attr_get

xfsdump uses for a large buffer for extended attributes, which has a
kmalloc'd shadow buffer in the kernel. This can fail after the
system has been running for some time as it is a high order
allocation. Add a fallback to vmalloc so that it doesn't require
contiguous memory and so won't randomly fail while xfsdump is
running.

Signed-off-by: Eric Sandeen <sandeen@redhat.com>
Reviewed-by: Mark Tinguely <tinguely@sgi.com>
Signed-off-by: Ben Myers <bpm@sgi.com>
fs/xfs/xfs_ioctl.c