]> git.michaelhowe.org Git - packages/o/openafs.git/commitdiff
STABLE14-viced-missing-lock-20071109
authorDan Hyde <drh@umich.edu>
Sat, 10 Nov 2007 00:35:10 +0000 (00:35 +0000)
committerJeffrey Altman <jaltman@secure-endpoints.com>
Sat, 10 Nov 2007 00:35:10 +0000 (00:35 +0000)
FIXES 76713

Add missing lock that needs to protect an in use 'host' from having
HOSTDELETED added to the hostFlags and HWNO_INPROGRESS removed.

(cherry picked from commit 76c886b574b7d21db2557872be8af8e6ca549f34)

src/viced/host.c

index b78745a4fa59df48cfd8f663395f664333449d44..a9841e9372bb1e348e30f48de79586f21f53da18 100644 (file)
@@ -1551,6 +1551,7 @@ h_GetHost_r(struct rx_connection *tcon)
                     host->interface ? uuid2 : ""));
 
            /* The host in the cache is not the host for this connection */
+            h_Lock_r(host);
            host->hostFlags |= HOSTDELETED;
            host->hostFlags &= ~HWHO_INPROGRESS;
            h_Unlock_r(host);