diff options
Diffstat (limited to 'xlators/nfs/server/src/nfs.c')
| -rw-r--r-- | xlators/nfs/server/src/nfs.c | 11 | 
1 files changed, 11 insertions, 0 deletions
diff --git a/xlators/nfs/server/src/nfs.c b/xlators/nfs/server/src/nfs.c index 6e9a274d980..6ed3614296f 100644 --- a/xlators/nfs/server/src/nfs.c +++ b/xlators/nfs/server/src/nfs.c @@ -965,6 +965,16 @@ out:          return ret;  } +extern int32_t +nlm_priv (xlator_t *this); + +int32_t +nfs_priv (xlator_t *this) +{ +        return nlm_priv (this); +} + +  struct xlator_cbks cbks = {          .forget      = nfs_forget,  }; @@ -972,6 +982,7 @@ struct xlator_cbks cbks = {  struct xlator_fops fops = { };  struct xlator_dumpops dumpops = { +        .priv           = nfs_priv,          .priv_to_dict   = nfs_priv_to_dict,  };  | 
