/* SPDX-License-Identifier: GPL-2.0-or-later */1/* AFS Cache Manager definitions2*3* Copyright (C) 2007 Red Hat, Inc. All Rights Reserved.4* Written by David Howells ([email protected])5*/67#ifndef AFS_CM_H8#define AFS_CM_H910#define AFS_CM_PORT 7001 /* AFS file server port */11#define CM_SERVICE 1 /* AFS File Service ID */1213enum AFS_CM_Operations {14CBCallBack = 204, /* break callback promises */15CBInitCallBackState = 205, /* initialise callback state */16CBProbe = 206, /* probe client */17CBGetLock = 207, /* get contents of CM lock table */18CBGetCE = 208, /* get cache file description */19CBGetXStatsVersion = 209, /* get version of extended statistics */20CBGetXStats = 210, /* get contents of extended statistics data */21CBInitCallBackState3 = 213, /* initialise callback state, version 3 */22CBProbeUuid = 214, /* check the client hasn't rebooted */23CBTellMeAboutYourself = 65538, /* get client capabilities */24};2526#define AFS_CAP_ERROR_TRANSLATION 0x12728#endif /* AFS_FS_H */293031