diff options
| author | krishna <ksriniva@redhat.com> | 2012-03-08 17:11:42 +0530 | 
|---|---|---|
| committer | Vijay Bellur <vijay@gluster.com> | 2012-03-14 06:01:22 -0700 | 
| commit | 160ff641157359dc60d1a37652ef449b3c21ebad (patch) | |
| tree | cbfa0d133f86171ae9976dcdf468e926cecc715f /rpc/rpc-lib | |
| parent | 152bf376b51a896f65470a65d8e9410f19d8689b (diff) | |
rpc: log in DEBUG when nfs clients try to see if ACL requests are accepted by nfs server
Change-Id: I897b48a02ce2150d268a1a8b45163e9e1aee6cff
BUG: 801338
Signed-off-by: krishna <ksriniva@redhat.com>
Reviewed-on: http://review.gluster.com/2901
Tested-by: Gluster Build System <jenkins@build.gluster.com>
Reviewed-by: Vijay Bellur <vijay@gluster.com>
Diffstat (limited to 'rpc/rpc-lib')
| -rw-r--r-- | rpc/rpc-lib/src/rpcsvc.c | 10 | 
1 files changed, 8 insertions, 2 deletions
diff --git a/rpc/rpc-lib/src/rpcsvc.c b/rpc/rpc-lib/src/rpcsvc.c index 5357537f3..398bcdab8 100644 --- a/rpc/rpc-lib/src/rpcsvc.c +++ b/rpc/rpc-lib/src/rpcsvc.c @@ -50,6 +50,8 @@  #include "xdr-rpcclnt.h" +#define ACL_PROGRAM 100227 +  struct rpcsvc_program gluster_dump_prog;  #define rpcsvc_alloc_request(svc, request)                              \ @@ -170,7 +172,11 @@ rpcsvc_program_actor (rpcsvc_request_t *req)          if (!found) {                  if (err != PROG_MISMATCH) { -                        gf_log (GF_RPCSVC, GF_LOG_WARNING, +                        /* log in DEBUG when nfs clients try to see if +                         * ACL requests are accepted by nfs server +                         */ +                        gf_log (GF_RPCSVC, (req->prognum == ACL_PROGRAM) ? +                                GF_LOG_DEBUG : GF_LOG_WARNING,                                  "RPC program not available (req %u %u)",                                  req->prognum, req->progver);                          err = PROG_UNAVAIL; @@ -1108,7 +1114,7 @@ rpcsvc_error_reply (rpcsvc_request_t *req)          if (!req)                  return -1; -        gf_log_callingfn ("", GF_LOG_WARNING, "sending a RPC error reply"); +        gf_log_callingfn ("", GF_LOG_DEBUG, "sending a RPC error reply");          /* At this point the req should already have been filled with the           * appropriate RPC error numbers.  | 
