From: Andrew Deason Date: Wed, 7 Jul 2010 15:23:27 +0000 (-0500) Subject: HPUX: correct PostPopulateVCache vfsp set X-Git-Tag: openafs-devel-1_5_76~173 X-Git-Url: https://git.michaelhowe.org/gitweb/?a=commitdiff_plain;h=8492619f23024eeb1ad42294f055218ddc57aa0d;p=packages%2Fo%2Fopenafs.git HPUX: correct PostPopulateVCache vfsp set Setting AFSTOV(avc)->v_mount is the linux/BSD way. avc->v.v_vfsp is the HP-UX (et al) way. Change-Id: If2cd1c1e74fcd0ca5ad981497abe7968d97cf0ed Reviewed-on: http://gerrit.openafs.org/2351 Reviewed-by: Derrick Brashear Tested-by: Derrick Brashear --- diff --git a/src/afs/HPUX/osi_vcache.c b/src/afs/HPUX/osi_vcache.c index 814aa907e..e08afda62 100644 --- a/src/afs/HPUX/osi_vcache.c +++ b/src/afs/HPUX/osi_vcache.c @@ -45,7 +45,7 @@ osi_AttachVnode(struct vcache *avc, int seq) { void osi_PostPopulateVCache(struct vcache *avc) { AFSTOV(avc)->v_op = afs_ops; - AFSTOV(avc)->v_mount = afs_globalVFS; + avc->v.v_vfsp = afs_globalVFS; vSetType(avc, VREG); }