diff options
author | David Howells <dhowells@redhat.com> | 2017-11-02 11:27:48 -0400 |
---|---|---|
committer | David Howells <dhowells@redhat.com> | 2017-11-13 10:38:18 -0500 |
commit | f4b3526d83c40dd8bf5948b9d7a1b2c340f0dcc8 (patch) | |
tree | 7c3708ec07e06f16382ab364e92ec8e2f0185112 /fs/afs/cmservice.c | |
parent | 33cd7f2b76717ac8dda566d8b4f518e803ae2618 (diff) |
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>
Diffstat (limited to 'fs/afs/cmservice.c')
-rw-r--r-- | fs/afs/cmservice.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/fs/afs/cmservice.c b/fs/afs/cmservice.c index 24032916e0ca..03c0a8572ef4 100644 --- a/fs/afs/cmservice.c +++ b/fs/afs/cmservice.c | |||
@@ -121,6 +121,9 @@ bool afs_cm_incoming_call(struct afs_call *call) | |||
121 | case CBProbe: | 121 | case CBProbe: |
122 | call->type = &afs_SRXCBProbe; | 122 | call->type = &afs_SRXCBProbe; |
123 | return true; | 123 | return true; |
124 | case CBProbeUuid: | ||
125 | call->type = &afs_SRXCBProbeUuid; | ||
126 | return true; | ||
124 | case CBTellMeAboutYourself: | 127 | case CBTellMeAboutYourself: |
125 | call->type = &afs_SRXCBTellMeAboutYourself; | 128 | call->type = &afs_SRXCBTellMeAboutYourself; |
126 | return true; | 129 | return true; |