]> git.kernelconcepts.de Git - karo-tx-linux.git/commit
dmaengine: ioat: set error code on failures
authorPan Bian <bianpan2016@163.com>
Fri, 2 Dec 2016 14:49:01 +0000 (22:49 +0800)
committerVinod Koul <vinod.koul@intel.com>
Tue, 6 Dec 2016 04:58:11 +0000 (10:28 +0530)
commitb424d2a0a186e7fe4b70db1d616a39d4c3fefd31
tree316baa292faef4e988c7491f1f401011ee6c06d5
parentd46dc99507de14ad224d3ac412852b489c1934f7
dmaengine: ioat: set error code on failures

In function ioat_dma_self_test(), when the calls to dma_mapping_error()
fails, the value of return variable err is 0 (indicates no error). As a
result, the return value may be inconsistent with the execution status.
This patch fixes the bug by assigning -ENOMEM to err on the error path.

Bugzilla: https://bugzilla.kernel.org/show_bug.cgi?id=188591
Signed-off-by: Pan Bian <bianpan2016@163.com>
Acked-by: Dave Jiang <dave.jiang@intel.com>
Signed-off-by: Vinod Koul <vinod.koul@intel.com>
drivers/dma/ioat/init.c