Bug 200547 - Wrong return error code when devm_kzalloc() fails in drivers/gpu/drm/atmel-hlcdc/atmel_hlcdc_output.c
Summary: Wrong return error code when devm_kzalloc() fails in drivers/gpu/drm/atmel-hl...
Status: NEW
Alias: None
Product: Drivers
Classification: Unclassified
Component: Other (show other bugs)
Hardware: All Linux
: P1 normal
Assignee: drivers_other
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2018-07-18 09:00 UTC by Jason Wood
Modified: 2018-07-18 09:00 UTC (History)
0 users

See Also:
Kernel Version: v4.18-rc4
Subsystem:
Regression: No
Bisected commit-id:


Attachments

Description Jason Wood 2018-07-18 09:00:53 UTC
Function atmel_hlcdc_attach_endpoint() defined in drivers/gpu/drm/atmel-hlcdc/atmel_hlcdc_output.c returns -ENODEV when function devm_kzalloc() fails. Codes related to this bug are shown as follows.

drivers/gpu/drm/atmel-hlcdc/atmel_hlcdc_output.c:
   34  static int atmel_hlcdc_attach_endpoint(struct drm_device *dev, int endpoint)
   35  {
...
   44  		return ret;
   45  
   46: 	encoder = devm_kzalloc(dev->dev, sizeof(*encoder), GFP_KERNEL);
   47  	if (!encoder)
   48  		return -EINVAL;	// should return -ENOMEM

Thanks for attention!
JW, ZG
IMChecker Group, THU

Note You need to log in before you can comment on or make changes to this bug.