projects
/
linux-2.6-block.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
33cd7f2
)
afs: Connect up the CB.ProbeUuid
author
David Howells
<dhowells@redhat.com>
Thu, 2 Nov 2017 15:27:48 +0000
(15:27 +0000)
committer
David Howells
<dhowells@redhat.com>
Mon, 13 Nov 2017 15:38:18 +0000
(15:38 +0000)
The handler for the CB.ProbeUuid operation in the cache manager is
implemented, but isn't listed in the switch-statement of operation
selection, so won't be used. Fix this by adding it.
Signed-off-by: David Howells <dhowells@redhat.com>
fs/afs/cmservice.c
patch
|
blob
|
blame
|
history
diff --git
a/fs/afs/cmservice.c
b/fs/afs/cmservice.c
index 24032916e0ca23ec399b89ed5352bdd2da76b4f5..03c0a8572ef4f213559d8793514db4cde53beb94 100644
(file)
--- a/
fs/afs/cmservice.c
+++ b/
fs/afs/cmservice.c
@@
-121,6
+121,9
@@
bool afs_cm_incoming_call(struct afs_call *call)
case CBProbe:
call->type = &afs_SRXCBProbe;
return true;
+ case CBProbeUuid:
+ call->type = &afs_SRXCBProbeUuid;
+ return true;
case CBTellMeAboutYourself:
call->type = &afs_SRXCBTellMeAboutYourself;
return true;