From: Andrew Deason Date: Fri, 2 Dec 2011 20:36:59 +0000 (-0600) Subject: salvager: Create link table with volume group id X-Git-Tag: upstream/1.8.0_pre1^2~2978 X-Git-Url: https://git.michaelhowe.org/gitweb/?a=commitdiff_plain;h=ae227049;p=packages%2Fo%2Fopenafs.git salvager: Create link table with volume group id The link table needs to be created with the VG id or RW vol id, not the non-RW vol id. Unlike other special inodes, this goes for both the 'parent' and 'volume' volume ids, not just the 'parent' id, since there is only one link table per VG. Without this, the salvager can generate invalid linktable special inodes if it encounters a VG with no inodes for the RW vol. Change-Id: I10725c514ef1b8a5b09a506e42596b51b74af5a2 Reviewed-on: http://gerrit.openafs.org/6179 Tested-by: BuildBot Reviewed-by: Derrick Brashear --- diff --git a/src/vol/vol-salvage.c b/src/vol/vol-salvage.c index 097573fb0..1aa1130ac 100644 --- a/src/vol/vol-salvage.c +++ b/src/vol/vol-salvage.c @@ -1808,7 +1808,7 @@ CreateLinkTable(struct SalvInfo *salvinfo, struct InodeSummary *isp, Inode ino) if (!VALID_INO(ino)) ino = - IH_CREATE(NULL, salvinfo->fileSysDevice, salvinfo->fileSysPath, 0, isp->volumeId, + IH_CREATE(NULL, salvinfo->fileSysDevice, salvinfo->fileSysPath, 0, isp->RWvolumeId, INODESPECIAL, VI_LINKTABLE, isp->RWvolumeId); if (!VALID_INO(ino)) Abort