|
Message-Id: <20180214201154.10186-5-willy@infradead.org> Date: Wed, 14 Feb 2018 12:11:50 -0800 From: Matthew Wilcox <willy@...radead.org> To: Andrew Morton <akpm@...ux-foundation.org> Cc: Matthew Wilcox <mawilcox@...rosoft.com>, linux-mm@...ck.org, Kees Cook <keescook@...omium.org>, linux-kernel@...r.kernel.org, kernel-hardening@...ts.openwall.com, Joe Perches <joe@...ches.com> Subject: [PATCH v2 4/8] Convert dax device to kvzalloc_struct From: Matthew Wilcox <mawilcox@...rosoft.com> Signed-off-by: Matthew Wilcox <mawilcox@...rosoft.com> --- drivers/dax/device.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/dax/device.c b/drivers/dax/device.c index 2137dbc29877..5821cde340f6 100644 --- a/drivers/dax/device.c +++ b/drivers/dax/device.c @@ -586,7 +586,7 @@ struct dev_dax *devm_create_dev_dax(struct dax_region *dax_region, if (!count) return ERR_PTR(-EINVAL); - dev_dax = kzalloc(sizeof(*dev_dax) + sizeof(*res) * count, GFP_KERNEL); + dev_dax = kvzalloc_struct(dev_dax, res, count, GFP_KERNEL); if (!dev_dax) return ERR_PTR(-ENOMEM); -- 2.15.1
Powered by blists - more mailing lists
Confused about mailing lists and their use? Read about mailing lists on Wikipedia and check out these guidelines on proper formatting of your messages.