From a38a75581e6e2f783e7b8658e9ca5d4243279f55 Mon Sep 17 00:00:00 2001 From: David Howells Date: Tue, 14 May 2019 12:29:11 +0100 Subject: afs: Fix unlink to handle YFS.RemoveFile2 better Make use of the status update for the target file that the YFS.RemoveFile2 RPC op returns to correctly update the vnode as to whether the file was actually deleted or just had nlink reduced. Fixes: 30062bd13e36 ("afs: Implement YFS support in the fs client") Signed-off-by: David Howells --- fs/afs/fsclient.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'fs/afs/fsclient.c') diff --git a/fs/afs/fsclient.c b/fs/afs/fsclient.c index 89b684c957b9..48298408d6ac 100644 --- a/fs/afs/fsclient.c +++ b/fs/afs/fsclient.c @@ -83,6 +83,7 @@ static int xdr_decode_AFSFetchStatus(const __be32 **_bp, * case. */ status->abort_code = abort_code; + scb->have_error = true; return 0; } @@ -127,6 +128,7 @@ static int xdr_decode_AFSFetchStatus(const __be32 **_bp, data_version = (u64)ntohl(xdr->data_version_lo); data_version |= (u64)ntohl(xdr->data_version_hi) << 32; status->data_version = data_version; + scb->have_status = true; *_bp = (const void *)*_bp + sizeof(*xdr); return 0; -- cgit v1.2.3