blob: 565cbe0a8af613ff50c22594c7df2d2c3f8740d1 [file] [log] [blame]
Thomas Gleixner2874c5f2019-05-27 08:55:01 +02001/* SPDX-License-Identifier: GPL-2.0-or-later */
David Howells08e0e7c2007-04-26 15:55:03 -07002/* AFS Cache Manager definitions
3 *
4 * Copyright (C) 2007 Red Hat, Inc. All Rights Reserved.
5 * Written by David Howells (dhowells@redhat.com)
David Howells08e0e7c2007-04-26 15:55:03 -07006 */
7
8#ifndef AFS_CM_H
9#define AFS_CM_H
10
11#define AFS_CM_PORT 7001 /* AFS file server port */
12#define CM_SERVICE 1 /* AFS File Service ID */
13
14enum AFS_CM_Operations {
15 CBCallBack = 204, /* break callback promises */
16 CBInitCallBackState = 205, /* initialise callback state */
17 CBProbe = 206, /* probe client */
18 CBGetLock = 207, /* get contents of CM lock table */
19 CBGetCE = 208, /* get cache file description */
20 CBGetXStatsVersion = 209, /* get version of extended statistics */
21 CBGetXStats = 210, /* get contents of extended statistics data */
David Howellsc35eccb2007-04-26 15:58:49 -070022 CBInitCallBackState3 = 213, /* initialise callback state, version 3 */
David Howells9396d492008-04-29 01:03:22 -070023 CBProbeUuid = 214, /* check the client hasn't rebooted */
David Howells7c80bcc2008-04-29 01:03:21 -070024 CBTellMeAboutYourself = 65538, /* get client capabilities */
David Howells08e0e7c2007-04-26 15:55:03 -070025};
26
David Howellsb908fe62007-04-26 15:58:17 -070027#define AFS_CAP_ERROR_TRANSLATION 0x1
28
David Howells08e0e7c2007-04-26 15:55:03 -070029#endif /* AFS_FS_H */