diff options
author | David Howells <dhowells@redhat.com> | 2020-06-16 02:25:56 +0300 |
---|---|---|
committer | David Howells <dhowells@redhat.com> | 2020-06-16 18:26:57 +0300 |
commit | 44767c353127cfcbee49a89bab39a3680ecd2a45 (patch) | |
tree | 03aeffa589f411af0d9ec366fadcc7fdb5b353e8 /fs/afs/dir.c | |
parent | 9bd87ec631ba07285138eed9c85645a12294f6c6 (diff) | |
download | linux-44767c353127cfcbee49a89bab39a3680ecd2a45.tar.xz |
afs: Remove afs_operation::abort_code
Remove afs_operation::abort_code as it's read but never set. Use
ac.abort_code instead.
Signed-off-by: David Howells <dhowells@redhat.com>
Diffstat (limited to 'fs/afs/dir.c')
-rw-r--r-- | fs/afs/dir.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/afs/dir.c b/fs/afs/dir.c index 308a125e9de3..ca6b147963a9 100644 --- a/fs/afs/dir.c +++ b/fs/afs/dir.c @@ -648,7 +648,7 @@ static void afs_do_lookup_success(struct afs_operation *op) vp = &op->file[0]; abort_code = vp->scb.status.abort_code; if (abort_code != 0) { - op->abort_code = abort_code; + op->ac.abort_code = abort_code; op->error = afs_abort_to_error(abort_code); } break; |