Message ID | 1401976544-36374-2-git-send-email-dros@primarydata.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
diff --git a/nfs4.1/dataserver.py b/nfs4.1/dataserver.py index 65e4f55..ade55e1 100644 --- a/nfs4.1/dataserver.py +++ b/nfs4.1/dataserver.py @@ -54,6 +54,7 @@ class DataServer(object): # as wide as the client/MDS channel (at least for linux client) fore_attrs = channel_attrs4(0, 16384, 16384, 2868, 8, 8, []) self.sess = c.create_session(fore_attrs=fore_attrs) + sess.compound([op.reclaim_complete(FALSE)]) self.make_root() def disconnect(self):
Send RECLAIM_COMPLETE after CREATE_SESSION. This enables backend communication to v4.1 linux nfsd servers (i/o through MDS only). Signed-off-by: Weston Andros Adamson <dros@primarydata.com> --- nfs4.1/dataserver.py | 1 + 1 file changed, 1 insertion(+)