From ef0ac2fbb026385f2306189230c2cff8706dff06 Mon Sep 17 00:00:00 2001 From: Andrew Deason Date: Mon, 16 May 2011 15:16:30 -0500 Subject: [PATCH] viced: Don't VTakeOffline_r without glock We don't have the volume glock, so don't call _r functions. Change-Id: I7779412fdf1333941d320234e64000dfbfed0f4f Reviewed-on: http://gerrit.openafs.org/4669 Reviewed-by: Derrick Brashear Tested-by: BuildBot --- src/viced/afsfileprocs.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/viced/afsfileprocs.c b/src/viced/afsfileprocs.c index b2dac045f4..046aed2a19 100644 --- a/src/viced/afsfileprocs.c +++ b/src/viced/afsfileprocs.c @@ -1397,7 +1397,7 @@ DeleteTarget(Vnode * parentptr, Volume * volptr, Vnode ** targetptr, return (EINVAL); if (CheckLength(volptr, parentptr, -1)) { - VTakeOffline_r(volptr); + VTakeOffline(volptr); return VSALVAGE; } @@ -1814,7 +1814,7 @@ Alloc_NewVnode(Vnode * parentptr, DirHandle * dir, Volume * volptr, if (CheckLength(volptr, parentptr, -1)) { VAdjustDiskUsage(&temp, volptr, -BlocksPreallocatedForVnode, 0); - VTakeOffline_r(volptr); + VTakeOffline(volptr); return VSALVAGE; }