mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2025-01-08 14:54:23 +08:00
staging/lustre: quiet console permission error messages
Quiet some common console error messages for permission errors that can be hit in common cases. Signed-off-by: Andreas Dilger <andreas.dilger@intel.com> Reviewed-on: http://review.whamcloud.com/8988 Intel-bug-id: https://jira.hpdd.intel.com/browse/LU-4522 Reviewed-by: Jinshan Xiong <jinshan.xiong@intel.com> Reviewed-by: Faccini Bruno <bruno.faccini@intel.com> Reviewed-by: Bob Glossman <bob.glossman@intel.com> Signed-off-by: Oleg Drokin <oleg.drokin@intel.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
0be19afa74
commit
e49634bbf2
@ -2882,9 +2882,10 @@ static int ll_inode_revalidate_fini(struct inode *inode, int rc)
|
||||
if (!S_ISREG(inode->i_mode) && !S_ISDIR(inode->i_mode))
|
||||
return 0;
|
||||
} else if (rc != 0) {
|
||||
CERROR("%s: revalidate FID "DFID" error: rc = %d\n",
|
||||
ll_get_fsname(inode->i_sb, NULL, 0),
|
||||
PFID(ll_inode2fid(inode)), rc);
|
||||
CDEBUG_LIMIT((rc == -EACCES || rc == -EIDRM) ? D_INFO : D_ERROR,
|
||||
"%s: revalidate FID "DFID" error: rc = %d\n",
|
||||
ll_get_fsname(inode->i_sb, NULL, 0),
|
||||
PFID(ll_inode2fid(inode)), rc);
|
||||
}
|
||||
|
||||
return rc;
|
||||
|
@ -893,7 +893,10 @@ resend:
|
||||
mdc_put_rpc_lock(obddev->u.cli.cl_rpc_lock, it);
|
||||
|
||||
if (rc < 0) {
|
||||
CERROR("ldlm_cli_enqueue: %d\n", rc);
|
||||
CDEBUG_LIMIT((rc == -EACCES || rc == -EIDRM) ? D_INFO : D_ERROR,
|
||||
"%s: ldlm_cli_enqueue failed: rc = %d\n",
|
||||
obddev->obd_name, rc);
|
||||
|
||||
mdc_clear_replay_flag(req, rc);
|
||||
ptlrpc_req_finished(req);
|
||||
return rc;
|
||||
|
Loading…
Reference in New Issue
Block a user