From 8492619f23024eeb1ad42294f055218ddc57aa0d Mon Sep 17 00:00:00 2001 From: Andrew Deason Date: Wed, 7 Jul 2010 10:23:27 -0500 Subject: [PATCH] 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 --- src/afs/HPUX/osi_vcache.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); } -- 2.39.5