diff options
| author | Michal Hocko <mhocko@suse.com> | 2016-04-28 15:24:03 +0200 |
|---|---|---|
| committer | Mike Snitzer <snitzer@redhat.com> | 2016-04-29 14:31:22 -0400 |
| commit | 0222c76e96163355620224625c1cd80991086dc7 (patch) | |
| tree | a985b0ef0d22f1b7b965858d87b63fc2dba491da | |
| parent | 7fa89cccec1ca14004dab7f7b18d30443ff95595 (diff) | |
| download | linux-dm-0222c76e96163355620224625c1cd80991086dc7.tar.gz | |
dm ioctl: drop use of __GFP_REPEAT in copy_params()'s __vmalloc() call
Notice: this object is not reachable from any branch.
copy_params()'s use of __GFP_REPEAT for the __vmalloc() call doesn't make much
sense because vmalloc doesn't rely on costly high order allocations.
Signed-off-by: Michal Hocko <mhocko@suse.com>
Signed-off-by: Mike Snitzer <snitzer@redhat.com>
Notice: this object is not reachable from any branch.
| -rw-r--r-- | drivers/md/dm-ioctl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/md/dm-ioctl.c b/drivers/md/dm-ioctl.c index 2adf81d81fca4..2c7ca258c4e47 100644 --- a/drivers/md/dm-ioctl.c +++ b/drivers/md/dm-ioctl.c @@ -1723,7 +1723,7 @@ static int copy_params(struct dm_ioctl __user *user, struct dm_ioctl *param_kern if (!dmi) { unsigned noio_flag; noio_flag = memalloc_noio_save(); - dmi = __vmalloc(param_kernel->data_size, GFP_NOIO | __GFP_REPEAT | __GFP_HIGH | __GFP_HIGHMEM, PAGE_KERNEL); + dmi = __vmalloc(param_kernel->data_size, GFP_NOIO | __GFP_HIGH | __GFP_HIGHMEM, PAGE_KERNEL); memalloc_noio_restore(noio_flag); if (dmi) *param_flags |= DM_PARAMS_VMALLOC; |
