OpenAFS Master Repository branch, openafs-stable-1_8_x, updated. openafs-stable-1_8_8_1-32-gf792585
Gerrit Code Review
gerrit@openafs.org
Thu, 4 Aug 2022 12:37:05 -0400
The following commit has been merged in the openafs-stable-1_8_x branch:
commit f792585297f597c5ac6b53afb89d9e66cc387845
Author: Mark Vitale <mvitale@sinenomine.net>
Date: Tue May 5 11:26:00 2020 -0400
UKERNEL: remove redundant declaration of osi_GetTime
Commit c861bb0d779b54236b63eda87d9dfaf7792d1659 "Additional UKERNEL
headers, prototyping and other fixes" added the following lines to
src/rx/rx_prototypes.h:
#if defined(UKERNEL) && !defined(osi_GetTime)
extern int osi_GetTime(struct timeval *tv);
#endif
However, this appears to be redundant with the declaration in
src/afs/afs_prototypes.h:
#ifdef UKERNEL
...
extern int osi_GetTime(struct timeval *tv);
...
#endif
which was added much earlier with commit
8f2df21ffe59e9aa66219bf24656775b584c122d
"pull-prototypes-to-head-20020821".
Remove the redundant declaration in rx/rx_prototypes.h.
No functional change is incurrred by this commit.
Reviewed-on: https://gerrit.openafs.org/14192
Reviewed-by: Andrew Deason <adeason@sinenomine.net>
Tested-by: BuildBot <buildbot@rampaginggeek.com>
Reviewed-by: Benjamin Kaduk <kaduk@mit.edu>
(cherry picked from commit 03f44172180563cb9d12d79e5512aae815fee899)
Change-Id: I2e562f0e25bf4dd0f47f952782792585a8e7fc20
Reviewed-on: https://gerrit.openafs.org/14975
Reviewed-by: Michael Meffie <mmeffie@sinenomine.net>
Reviewed-by: Mark Vitale <mvitale@sinenomine.net>
Tested-by: BuildBot <buildbot@rampaginggeek.com>
Reviewed-by: Andrew Deason <adeason@sinenomine.net>
Reviewed-by: Marcio Brito Barbosa <mbarbosa@sinenomine.net>
Reviewed-by: Stephan Wiesand <stephan.wiesand@desy.de>
src/rx/rx_prototypes.h | 3 ---
1 file changed, 3 deletions(-)
--
OpenAFS Master Repository