This code is not using the correct gfp flags which were passed in.
However, this does not affect runtime because kstrdup_const() is a
no-op in this context.  (It just returns the "kmalloc" string literal
without doing an allocation.)

Signed-off-by: Dan Carpenter <[email protected]>
---
 drivers/gpu/drm/drm_managed.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/gpu/drm/drm_managed.c b/drivers/gpu/drm/drm_managed.c
index 5423ad883729..bcd111404b12 100644
--- a/drivers/gpu/drm/drm_managed.c
+++ b/drivers/gpu/drm/drm_managed.c
@@ -196,7 +196,7 @@ void *drmm_kmalloc(struct drm_device *dev, size_t size, 
gfp_t gfp)
                               size, gfp);
                return NULL;
        }
-       dr->node.name = kstrdup_const("kmalloc", GFP_KERNEL);
+       dr->node.name = kstrdup_const("kmalloc", gfp);
 
        add_dr(dev, dr);
 
-- 
2.39.2

Reply via email to