Module Name: src
Committed By: cliff
Date: Fri Sep 25 22:21:42 UTC 2009
Modified Files:
src/sys/arch/evbmips/include [matt-nb5-mips64]: intr.h
Log Message:
struct evbmips_intrhand gets field 'ih_ipl' to associate
this interrupt with an IPL
To generate a diff of this commit:
cvs rdiff -u -r1.16 -r1.16.18.1 src/sys/arch/evbmips/include/intr.h
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/arch/evbmips/include/intr.h
diff -u src/sys/arch/evbmips/include/intr.h:1.16 src/sys/arch/evbmips/include/intr.h:1.16.18.1
--- src/sys/arch/evbmips/include/intr.h:1.16 Mon Apr 28 20:23:17 2008
+++ src/sys/arch/evbmips/include/intr.h Fri Sep 25 22:21:42 2009
@@ -1,4 +1,4 @@
-/* $NetBSD: intr.h,v 1.16 2008/04/28 20:23:17 martin Exp $ */
+/* $NetBSD: intr.h,v 1.16.18.1 2009/09/25 22:21:42 cliff Exp $ */
/*-
* Copyright (c) 2000, 2001 The NetBSD Foundation, Inc.
@@ -96,6 +96,7 @@
int (*ih_func)(void *);
void *ih_arg;
int ih_irq;
+ int ih_ipl;
};
#include <mips/softintr.h>