Orabug:
25927528
The CCB_EXEC ioctl in the DAX driver returns ENOBUFS when the user must
free completion areas before the submission can succeed. There is a
dax_err() print when this condition occurs. This print should be changed to
a dax_dbg() print since this return value can be used by the caller to
trigger freeing the completion areas, hence an error print is too verbose.
Signed-off-by: Jonathan Helman <jonathan.helman@oracle.com>
Reviewed-by: Yuval Shaia <yuval.shaia@oracle.com>
Reviewed-by: Sanath Kumar <sanath.s.kumar@oracle.com>
Signed-off-by: Allen Pais <allen.pais@oracle.com>
* enhancement.
*/
if (ccb_buf == NULL || nreserved != usr_args.dce_ccb_buf_len) {
- dax_err("insufficient kernel CCB resources: user needs to free completion area space and retry");
+ dax_dbg("insufficient kernel CCB resources: user needs to free completion area space and retry");
return -ENOBUFS;
}