diff options
author | Jeff Layton <jlayton@redhat.com> | 2014-02-07 11:04:04 -0500 |
---|---|---|
committer | Steve French <smfrench@gmail.com> | 2014-02-07 20:38:29 -0600 |
commit | 26c8f0d601f5d4c0d9f4bc8c5151539aae5dc26a (patch) | |
tree | 54636097b13ebeee398f6b4fe4d98835065ba3b0 /fs/cifs/cifssmb.c | |
parent | 83e3bc23ef9ce7c03b7b4e5d3d790246ea59db3e (diff) | |
download | linux-stable-26c8f0d601f5d4c0d9f4bc8c5151539aae5dc26a.tar.gz linux-stable-26c8f0d601f5d4c0d9f4bc8c5151539aae5dc26a.tar.bz2 linux-stable-26c8f0d601f5d4c0d9f4bc8c5151539aae5dc26a.zip |
cifs: use a flexarray in cifs_writedata
The cifs_writedata code uses a single element trailing array, which
just adds unneeded complexity. Use a flexarray instead.
Signed-off-by: Jeff Layton <jlayton@redhat.com>
Reviewed-by: Pavel Shilovsky <piastry@etersoft.ru>
Signed-off-by: Steve French <smfrench@gmail.com>
Diffstat (limited to 'fs/cifs/cifssmb.c')
-rw-r--r-- | fs/cifs/cifssmb.c | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/fs/cifs/cifssmb.c b/fs/cifs/cifssmb.c index 4d881c35eeca..0cd742ccb019 100644 --- a/fs/cifs/cifssmb.c +++ b/fs/cifs/cifssmb.c @@ -1962,15 +1962,9 @@ cifs_writedata_alloc(unsigned int nr_pages, work_func_t complete) { struct cifs_writedata *wdata; - /* this would overflow */ - if (nr_pages == 0) { - cifs_dbg(VFS, "%s: called with nr_pages == 0!\n", __func__); - return NULL; - } - /* writedata + number of page pointers */ wdata = kzalloc(sizeof(*wdata) + - sizeof(struct page *) * (nr_pages - 1), GFP_NOFS); + sizeof(struct page *) * nr_pages, GFP_NOFS); if (wdata != NULL) { kref_init(&wdata->refcount); INIT_LIST_HEAD(&wdata->list); |