Linux CM: Use kernel allocator directly for events
[openafs.git] / src / afs / LINUX / osi_sleep.c
index 3ac172e..31b5149 100644 (file)
@@ -8,33 +8,34 @@
  */
 
 #include <afsconfig.h>
-#include "../afs/param.h"
+#include "afs/param.h"
 
-RCSID("$Header$");
 
-#include "../afs/sysincludes.h"        /* Standard vendor system headers */
-#include "../afs/afsincludes.h"        /* Afs-based standard headers */
-#include "../afs/afs_stats.h"   /* afs statistics */
-
-static int osi_TimedSleep(char *event, afs_int32 ams, int aintok);
+#include "afs/sysincludes.h"   /* Standard vendor system headers */
+#include "afsincludes.h"       /* Afs-based standard headers */
+#include "afs/afs_stats.h"     /* afs statistics */
+#include "osi_compat.h"
 
 static char waitV, dummyV;
 
-void afs_osi_InitWaitHandle(struct afs_osi_WaitHandle *achandle)
+void
+afs_osi_InitWaitHandle(struct afs_osi_WaitHandle *achandle)
 {
     AFS_STATCNT(osi_InitWaitHandle);
     achandle->proc = (caddr_t) 0;
 }
 
 /* cancel osi_Wait */
-void afs_osi_CancelWait(struct afs_osi_WaitHandle *achandle)
+void
+afs_osi_CancelWait(struct afs_osi_WaitHandle *achandle)
 {
     caddr_t proc;
 
     AFS_STATCNT(osi_CancelWait);
     proc = achandle->proc;
-    if (proc == 0) return;
-    achandle->proc = (caddr_t) 0;   /* so dude can figure out he was signalled */
+    if (proc == 0)
+       return;
+    achandle->proc = (caddr_t) 0;      /* so dude can figure out he was signalled */
     afs_osi_Wakeup(&waitV);
 }
 
@@ -42,21 +43,22 @@ void afs_osi_CancelWait(struct afs_osi_WaitHandle *achandle)
  * Waits for data on ahandle, or ams ms later.  ahandle may be null.
  * Returns 0 if timeout and EINTR if signalled.
  */
-int afs_osi_Wait(afs_int32 ams, struct afs_osi_WaitHandle *ahandle, int aintok)
+int
+afs_osi_Wait(afs_int32 ams, struct afs_osi_WaitHandle *ahandle, int aintok)
 {
     afs_int32 endTime;
-    struct timer_list *timer = NULL;
     int code;
 
     AFS_STATCNT(osi_Wait);
-    endTime = osi_Time() + (ams/1000);
+    endTime = osi_Time() + (ams / 1000);
     if (ahandle)
        ahandle->proc = (caddr_t) current;
 
     do {
        AFS_ASSERT_GLOCK();
-        code = osi_TimedSleep(&waitV, ams, 1);
-       if (code) break;
+       code = afs_osi_TimedSleep(&waitV, ams, 1);
+       if (code)
+           break;
        if (ahandle && (ahandle->proc == (caddr_t) 0)) {
            /* we've been signalled */
            break;
@@ -73,23 +75,34 @@ typedef struct afs_event {
     char *event;               /* lwp event: an address */
     int refcount;              /* Is it in use? */
     int seq;                   /* Sequence number: this is incremented
-                                  by wakeup calls; wait will not return until
-                                  it changes */
-#if defined(AFS_LINUX24_ENV)
+                                * by wakeup calls; wait will not return until
+                                * it changes */
     wait_queue_head_t cond;
-#else
-    struct wait_queue *cond;
-#endif
 } afs_event_t;
 
 #define HASHSIZE 128
-afs_event_t *afs_evhasht[HASHSIZE];/* Hash table for events */
+afs_event_t *afs_evhasht[HASHSIZE];    /* Hash table for events */
 #define afs_evhash(event)      (afs_uint32) ((((long)event)>>2) & (HASHSIZE-1));
 int afs_evhashcnt = 0;
 
+void
+osi_event_shutdown(void)
+{
+   int i;
+
+   for (i=0;i<HASHSIZE;i++) {
+       while (afs_evhasht[i] != NULL) {
+           afs_event_t *tmp = afs_evhasht[i];
+           afs_evhasht[i] = tmp->next;
+           kfree(tmp);
+       }
+   }
+}
+
 /* Get and initialize event structure corresponding to lwp event (i.e. address)
  * */
-static afs_event_t *afs_getevent(char *event)
+static afs_event_t *
+afs_getevent(char *event)
 {
     afs_event_t *evp, *newp = 0;
     int hashcode;
@@ -120,31 +133,23 @@ static afs_event_t *afs_getevent(char *event)
  *     address.
  *
  * Locks:
- *     Called with GLOCK held. However the function might drop
- *     GLOCK when it calls osi_AllocSmallSpace for allocating
- *     a new event (In Linux, the allocator drops GLOCK to avoid
- *     a deadlock).
+ *     Called with GLOCK held.
  */
 
-static void afs_addevent(char *event)
+static void
+afs_addevent(char *event)
 {
     int hashcode;
     afs_event_t *newp;
-    
+
     AFS_ASSERT_GLOCK();
     hashcode = afs_evhash(event);
-    newp = osi_linux_alloc(sizeof(afs_event_t), 0);
+    newp = kzalloc(sizeof(afs_event_t), GFP_NOFS);
     afs_evhashcnt++;
     newp->next = afs_evhasht[hashcode];
     afs_evhasht[hashcode] = newp;
-#if defined(AFS_LINUX24_ENV)
     init_waitqueue_head(&newp->cond);
-#else
-    init_waitqueue(&newp->cond);
-#endif
-    newp->seq = 0;
-    newp->event = &dummyV;  /* Dummy address for new events */
-    newp->refcount = 0;
+    newp->event = &dummyV;     /* Dummy address for new events */
 }
 
 #ifndef set_current_state
@@ -159,7 +164,8 @@ static void afs_addevent(char *event)
  * Waits for an event to be notified, returning early if a signal
  * is received.  Returns EINTR if signaled, and 0 otherwise.
  */
-int afs_osi_SleepSig(void *event)
+int
+afs_osi_SleepSig(void *event)
 {
     struct afs_event *evp;
     int seq, retval;
@@ -171,8 +177,8 @@ int afs_osi_SleepSig(void *event)
 
     evp = afs_getevent(event);
     if (!evp) {
-        afs_addevent(event);
-        evp = afs_getevent(event);
+       afs_addevent(event);
+       evp = afs_getevent(event);
     }
 
     seq = evp->seq;
@@ -180,10 +186,12 @@ int afs_osi_SleepSig(void *event)
 
     add_wait_queue(&evp->cond, &wait);
     while (seq == evp->seq) {
-        set_current_state(TASK_INTERRUPTIBLE);
+       set_current_state(TASK_INTERRUPTIBLE);
        AFS_ASSERT_GLOCK();
        AFS_GUNLOCK();
        schedule();
+       afs_try_to_freeze();
+
        AFS_GLOCK();
        if (signal_pending(current)) {
            retval = EINTR;
@@ -204,25 +212,26 @@ int afs_osi_SleepSig(void *event)
  *   caller that the wait has been interrupted and the stack should be cleaned
  *   up preparatory to signal delivery
  */
-void afs_osi_Sleep(void *event)
+void
+afs_osi_Sleep(void *event)
 {
     sigset_t saved_set;
 
-    spin_lock_irq(&current->sigmask_lock);
+    SIG_LOCK(current);
     saved_set = current->blocked;
     sigfillset(&current->blocked);
-    recalc_sigpending(current);
-    spin_unlock_irq(&current->sigmask_lock);
+    RECALC_SIGPENDING(current);
+    SIG_UNLOCK(current);
 
     afs_osi_SleepSig(event);
 
-    spin_lock_irq(&current->sigmask_lock);
+    SIG_LOCK(current);
     current->blocked = saved_set;
-    recalc_sigpending(current);
-    spin_unlock_irq(&current->sigmask_lock);
+    RECALC_SIGPENDING(current);
+    SIG_UNLOCK(current);
 }
 
-/* osi_TimedSleep
+/* afs_osi_TimedSleep
  * 
  * Arguments:
  * event - event to sleep on
@@ -232,7 +241,8 @@ void afs_osi_Sleep(void *event)
  * Returns 0 if timeout, EINTR if signalled, and EGAIN if it might
  * have raced.
  */
-static int osi_TimedSleep(char *event, afs_int32 ams, int aintok)
+int
+afs_osi_TimedSleep(void *event, afs_int32 ams, int aintok)
 {
     int code = 0;
     long ticks = (ams * HZ / 1000) + 1;
@@ -245,21 +255,22 @@ static int osi_TimedSleep(char *event, afs_int32 ams, int aintok)
 
     evp = afs_getevent(event);
     if (!evp) {
-        afs_addevent(event);
+       afs_addevent(event);
        evp = afs_getevent(event);
     }
 
     add_wait_queue(&evp->cond, &wait);
     set_current_state(TASK_INTERRUPTIBLE);
-               /* always sleep TASK_INTERRUPTIBLE to keep load average
-                  from artifically increasing. */
+    /* always sleep TASK_INTERRUPTIBLE to keep load average
+     * from artifically increasing. */
     AFS_GUNLOCK();
 
-    if (aintok) {
-        if (schedule_timeout(ticks))
-            code = EINTR;
-    } else
-        schedule_timeout(ticks);
+    if (schedule_timeout(ticks)) {
+       if (aintok)
+           code = EINTR;
+    }
+
+    afs_try_to_freeze();
 
     AFS_GLOCK();
     remove_wait_queue(&evp->cond, &wait);
@@ -271,19 +282,20 @@ static int osi_TimedSleep(char *event, afs_int32 ams, int aintok)
 }
 
 
-int afs_osi_Wakeup(void *event)
+int
+afs_osi_Wakeup(void *event)
 {
-    int ret=2;
+    int ret = 2;
     struct afs_event *evp;
 
     evp = afs_getevent(event);
-    if (!evp)                          /* No sleepers */
+    if (!evp)                  /* No sleepers */
        return 1;
 
     if (evp->refcount > 1) {
-       evp->seq++;    
+       evp->seq++;
        wake_up(&evp->cond);
-       ret=0;
+       ret = 0;
     }
     relevent(evp);
     return ret;