Skip to content

Commit f4b3526

Browse files
committed
afs: Connect up the CB.ProbeUuid
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>
1 parent 33cd7f2 commit f4b3526

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

fs/afs/cmservice.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -121,6 +121,9 @@ bool afs_cm_incoming_call(struct afs_call *call)
121121
case CBProbe:
122122
call->type = &afs_SRXCBProbe;
123123
return true;
124+
case CBProbeUuid:
125+
call->type = &afs_SRXCBProbeUuid;
126+
return true;
124127
case CBTellMeAboutYourself:
125128
call->type = &afs_SRXCBTellMeAboutYourself;
126129
return true;

0 commit comments

Comments
 (0)