mirror of
https://git.openafs.org/openafs.git
synced 2025-01-18 15:00:12 +00:00
afs: Remove afs_DbgDisconFiles()
The function afs_DbgDisconFiles() is not referenced anywhere within the
source tree.
Remove the function afs_DbgDisconFiles().
The commit: 'disconnected-rw-20080922' (433afd4779
) introduced
afs_DbgDisconFiles(), but the function was never used.
This function is flagged due to a missing prototype when building
against a Linux 6.8 kernel (which sets the -Wmissing-declarations and
-Wmissing-prototypes compiler flags as default). Linux 6.8 commit:
'Makefile.extrawarn: turn on missing-prototypes globally' (0fcb70851f).
When building against a kernel with CONFIG_WERROR=y, the build fails.
Change-Id: Ib28eb6a167c6add2639f5db0dee8709465b02909
Reviewed-on: https://gerrit.openafs.org/15640
Tested-by: BuildBot <buildbot@rampaginggeek.com>
Reviewed-by: Andrew Deason <adeason@sinenomine.net>
Reviewed-by: Benjamin Kaduk <kaduk@mit.edu>
This commit is contained in:
parent
379f7fc51d
commit
32bb900477
@ -1334,37 +1334,6 @@ afs_DisconDiscardAll(afs_ucred_t *acred)
|
||||
ReleaseWriteLock(&afs_disconDirtyLock);
|
||||
}
|
||||
|
||||
/*!
|
||||
* Print list of disconnected files.
|
||||
*
|
||||
* \note Call with afs_DDirtyVCListLock read locked.
|
||||
*/
|
||||
void
|
||||
afs_DbgDisconFiles(void)
|
||||
{
|
||||
struct vcache *tvc;
|
||||
struct afs_q *q;
|
||||
int i = 0;
|
||||
|
||||
afs_warn("List of dirty files: \n");
|
||||
|
||||
ObtainReadLock(&afs_disconDirtyLock);
|
||||
for (q = QPrev(&afs_disconDirty); q != &afs_disconDirty; q = QPrev(q)) {
|
||||
tvc = QEntry(q, struct vcache, dirtyq);
|
||||
|
||||
afs_warn("Cell=%u Volume=%u VNode=%u Unique=%u\n",
|
||||
tvc->f.fid.Cell,
|
||||
tvc->f.fid.Fid.Volume,
|
||||
tvc->f.fid.Fid.Vnode,
|
||||
tvc->f.fid.Fid.Unique);
|
||||
|
||||
i++;
|
||||
if (i >= 30)
|
||||
osi_Panic("afs_DbgDisconFiles: loop in dirty list\n");
|
||||
}
|
||||
ReleaseReadLock(&afs_disconDirtyLock);
|
||||
}
|
||||
|
||||
/*!
|
||||
* Generate a fake fid for a disconnected shadow dir.
|
||||
* Similar to afs_GenFakeFid, only that it uses the dhash
|
||||
|
Loading…
Reference in New Issue
Block a user