diff --git a/src/afs/afs_callback.c b/src/afs/afs_callback.c index 22edefb3f3..56e8cd2cc2 100644 --- a/src/afs/afs_callback.c +++ b/src/afs/afs_callback.c @@ -1472,71 +1472,6 @@ SRXAFSCB_GetCacheConfig(struct rx_call *a_call, afs_uint32 callerVersion, return 0; } -/*------------------------------------------------------------------------ - * EXPORTED SRXAFSCB_FetchData - * - * Description: - * Routine to do third party move from a remioserver to the original - * issuer of an ArchiveData request. Presently supported only by the - * "fs" command, not by the AFS client. - * - * Arguments: - * rxcall: Ptr to Rx call on which this request came in. - * Fid: pointer to AFSFid structure. - * Fd: File descriptor inside fs command. - * Position: Offset in the file. - * Length: Data length to transfer. - * TotalLength: Pointer to total file length field - * - * Returns: - * 0 on success - * - * Environment: - * Nothing interesting. - * - * Side Effects: - *------------------------------------------------------------------------*/ -int -SRXAFSCB_FetchData(struct rx_call *rxcall, struct AFSFid *Fid, afs_int32 Fd, - afs_int64 Position, afs_int64 Length, - afs_int64 * TotalLength) -{ - return ENOSYS; -} - -/*------------------------------------------------------------------------ - * EXPORTED SRXAFSCB_StoreData - * - * Description: - * Routine to do third party move from a remioserver to the original - * issuer of a RetrieveData request. Presently supported only by the - * "fs" command, not by the AFS client. - * - * Arguments: - * rxcall: Ptr to Rx call on which this request came in. - * Fid: pointer to AFSFid structure. - * Fd: File descriptor inside fs command. - * Position: Offset in the file. - * Length: Data length to transfer. - * TotalLength: Pointer to total file length field - * - * Returns: - * 0 on success - * - * Environment: - * Nothing interesting. - * - * Side Effects: - * As advertised. - *------------------------------------------------------------------------*/ -int -SRXAFSCB_StoreData(struct rx_call *rxcall, struct AFSFid *Fid, afs_int32 Fd, - afs_int64 Position, afs_int64 Length, - afs_int64 * TotalLength) -{ - return ENOSYS; -} - /*------------------------------------------------------------------------ * EXPORTED SRXAFSCB_GetCellByNum * diff --git a/src/afs/afs_prototypes.h b/src/afs/afs_prototypes.h index ed43635aa7..208bd03382 100644 --- a/src/afs/afs_prototypes.h +++ b/src/afs/afs_prototypes.h @@ -103,13 +103,6 @@ extern int SRXAFSCB_GetCacheConfig(struct rx_call *a_call, afs_uint32 * serverVersion, afs_uint32 * configCount, cacheConfig * config); -extern int SRXAFSCB_FetchData(struct rx_call *rxcall, struct AFSFid *Fid, - afs_int32 Fd, afs_int64 Position, - afs_int64 Length, afs_int64 * TotalLength); -extern int SRXAFSCB_StoreData(struct rx_call *rxcall, struct AFSFid *Fid, - afs_int32 Fd, afs_int64 Position, - afs_int64 Length, afs_int64 * TotalLength); - /* afs_cbqueue.c */ extern afs_rwlock_t afs_xcbhash;