mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-07 19:30:30 +09:00
NFSv4: fix getacl ERANGE for some ACL buffer sizes
am: a0378b5bfc
Change-Id: I4e78d196a895302acaac4ce91b1c72613ca3563a
This commit is contained in:
committed by
android-build-merger
commit
ec8e7f39b4
@@ -4711,7 +4711,7 @@ out:
|
||||
*/
|
||||
static ssize_t __nfs4_get_acl_uncached(struct inode *inode, void *buf, size_t buflen)
|
||||
{
|
||||
struct page *pages[NFS4ACL_MAXPAGES] = {NULL, };
|
||||
struct page *pages[NFS4ACL_MAXPAGES + 1] = {NULL, };
|
||||
struct nfs_getaclargs args = {
|
||||
.fh = NFS_FH(inode),
|
||||
.acl_pages = pages,
|
||||
@@ -4725,13 +4725,9 @@ static ssize_t __nfs4_get_acl_uncached(struct inode *inode, void *buf, size_t bu
|
||||
.rpc_argp = &args,
|
||||
.rpc_resp = &res,
|
||||
};
|
||||
unsigned int npages = DIV_ROUND_UP(buflen, PAGE_SIZE);
|
||||
unsigned int npages = DIV_ROUND_UP(buflen, PAGE_SIZE) + 1;
|
||||
int ret = -ENOMEM, i;
|
||||
|
||||
/* As long as we're doing a round trip to the server anyway,
|
||||
* let's be prepared for a page of acl data. */
|
||||
if (npages == 0)
|
||||
npages = 1;
|
||||
if (npages > ARRAY_SIZE(pages))
|
||||
return -ERANGE;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user