Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/arch/arm26/arm26 Use M_SOFTINTR for soft interrupt sruct...



details:   https://anonhg.NetBSD.org/src/rev/e865fddfba49
branches:  trunk
changeset: 495520:e865fddfba49
user:      bjh21 <bjh21%NetBSD.org@localhost>
date:      Sun Jul 30 16:39:18 2000 +0000

description:
Use M_SOFTINTR for soft interrupt sructures

diffstat:

 sys/arch/arm26/arm26/softintr.c |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (27 lines):

diff -r 365450637108 -r e865fddfba49 sys/arch/arm26/arm26/softintr.c
--- a/sys/arch/arm26/arm26/softintr.c   Sun Jul 30 15:17:14 2000 +0000
+++ b/sys/arch/arm26/arm26/softintr.c   Sun Jul 30 16:39:18 2000 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: softintr.c,v 1.5 2000/07/02 04:40:35 cgd Exp $ */
+/* $NetBSD: softintr.c,v 1.6 2000/07/30 16:39:18 bjh21 Exp $ */
 
 /*
  * Copyright (c) 1999 Ben Harris.
@@ -38,7 +38,7 @@
 
 #include <sys/param.h>
 
-__RCSID("$NetBSD: softintr.c,v 1.5 2000/07/02 04:40:35 cgd Exp $");
+__RCSID("$NetBSD: softintr.c,v 1.6 2000/07/30 16:39:18 bjh21 Exp $");
 
 #include <sys/malloc.h>
 #include <sys/queue.h>
@@ -120,7 +120,7 @@
        struct softintr_handler *new, *sh;
 
        MALLOC(new, struct softintr_handler *, sizeof(*sh),
-              M_DEVBUF, M_WAITOK);
+              M_SOFTINTR, M_WAITOK);
        new->sh_ipl = ipl;
        new->sh_func = func;
        new->sh_arg = arg;



Home | Main Index | Thread Index | Old Index