From: Derrick Brashear Date: Tue, 2 Aug 2005 15:04:47 +0000 (+0000) Subject: STABLE14-linux-fix-refrigerator-calls-20050802 X-Git-Tag: openafs-devel-1_3_87~13 X-Git-Url: https://git.michaelhowe.org/gitweb/?a=commitdiff_plain;h=5d034cb02b5c411c9fbdee80c52d48281aed3d39;p=packages%2Fo%2Fopenafs.git STABLE14-linux-fix-refrigerator-calls-20050802 it's CONFIG_PF, not CONFIG_PM (cherry picked from commit 7ad3929e3c75aa2fabab7f72c79e42759562804f) --- diff --git a/src/afs/LINUX/osi_sleep.c b/src/afs/LINUX/osi_sleep.c index 33b53d79a..c0e4072bb 100644 --- a/src/afs/LINUX/osi_sleep.c +++ b/src/afs/LINUX/osi_sleep.c @@ -193,7 +193,7 @@ afs_osi_SleepSig(void *event) AFS_GUNLOCK(); schedule(); #ifdef AFS_LINUX26_ENV -#ifdef CONFIG_PF +#ifdef CONFIG_PM if (current->flags & PF_FREEZE) refrigerator(PF_FREEZE); #endif @@ -277,7 +277,7 @@ osi_TimedSleep(char *event, afs_int32 ams, int aintok) } else schedule_timeout(ticks); #ifdef AFS_LINUX26_ENV -#ifdef CONFIG_PF +#ifdef CONFIG_PM if (current->flags & PF_FREEZE) refrigerator(PF_FREEZE); #endif