mirror of
https://git.openafs.org/openafs.git
synced 2025-01-19 07:20:11 +00:00
Unix CM: Just use Bogus for VenusLogging
The VenusLogging function no longer exists - instead of having a stub the returns EINVAL, just use the existing Bogus stub (which returns EINVAL) instead. Change-Id: I9cc1746577c19ff2e4087e16e8e2b56c0070c75d Reviewed-on: http://gerrit.openafs.org/1279 Reviewed-by: Derrick Brashear <shadow@dementia.org> Tested-by: Derrick Brashear <shadow@dementia.org>
This commit is contained in:
parent
6361d65049
commit
6011b3a325
@ -250,7 +250,6 @@ DECL_PIOCTL(PNewAlias);
|
||||
DECL_PIOCTL(PListCells);
|
||||
DECL_PIOCTL(PListAliases);
|
||||
DECL_PIOCTL(PRemoveMount);
|
||||
DECL_PIOCTL(PVenusLogging);
|
||||
DECL_PIOCTL(PGetCellStatus);
|
||||
DECL_PIOCTL(PSetCellStatus);
|
||||
DECL_PIOCTL(PFlushVolumeData);
|
||||
@ -345,7 +344,7 @@ static pioctlFunction VpioctlSw[] = {
|
||||
PGetWSCell, /* 31 -- get cell name for workstation */
|
||||
PMariner, /* 32 - set/get mariner host */
|
||||
PGetUserCell, /* 33 -- get cell name for user */
|
||||
PVenusLogging, /* 34 -- Enable/Disable logging */
|
||||
PBogus, /* 34 -- Enable/Disable logging */
|
||||
PGetCellStatus, /* 35 */
|
||||
PSetCellStatus, /* 36 */
|
||||
PFlushVolumeData, /* 37 -- flush all data from a volume */
|
||||
@ -3262,20 +3261,6 @@ DECL_PIOCTL(PRemoveMount)
|
||||
return code;
|
||||
}
|
||||
|
||||
/*!
|
||||
* VIOC_VENUSLOG (34) - Enable/Disable venus logging
|
||||
*
|
||||
* \ingroup pioctl
|
||||
*
|
||||
* \retval EINVAL Error if some of the standard args aren't set
|
||||
*
|
||||
* \notes Obsoleted, perhaps should be PBogus
|
||||
*/
|
||||
DECL_PIOCTL(PVenusLogging)
|
||||
{
|
||||
return EINVAL; /* OBSOLETE */
|
||||
}
|
||||
|
||||
/*!
|
||||
* VIOC_GETCELLSTATUS (35) - Get cell status info
|
||||
*
|
||||
|
Loading…
Reference in New Issue
Block a user