summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--sys/net/netisr.c15
-rw-r--r--sys/net/netisr.h1
2 files changed, 5 insertions, 11 deletions
diff --git a/sys/net/netisr.c b/sys/net/netisr.c
index efbc183..eecf315 100644
--- a/sys/net/netisr.c
+++ b/sys/net/netisr.c
@@ -78,8 +78,7 @@ netisr_register(int num, netisr_t *handler, struct ifqueue *inq, int flags)
KASSERT(!(num < 0 || num >= (sizeof(netisrs)/sizeof(*netisrs))),
("bad isr %d", num));
- KASSERT(flags == 0 || flags == NETISR_FORCEQUEUE,
- ("netisr_register: bad flags 0x%x\n", flags));
+ KASSERT(flags == 0, ("netisr_register: bad flags 0x%x\n", flags));
netisrs[num].ni_handler = handler;
netisrs[num].ni_queue = inq;
netisrs[num].ni_flags = flags;
@@ -169,15 +168,11 @@ netisr_dispatch(int num, struct mbuf *m)
}
/*
- * Unless NETISR_FORCEQUEUE is set on the netisr (generally
- * indicating that the handler still requires Giant, which cannot be
- * acquired in arbitrary order with respect to a caller), directly
- * dispatch handling of this packet. Source ordering is maintained
- * by virtue of callers consistently calling one of queued or direct
- * dispatch, and the forcequeue flag being immutable after
- * registration.
+ * Directly dispatch handling of this packet, if permitted by global
+ * policy. Source ordering is maintained by virtue of callers
+ * consistently calling one of queued or direct dispatch.
*/
- if (netisr_direct && !(ni->ni_flags & NETISR_FORCEQUEUE)) {
+ if (netisr_direct) {
isrstat.isrs_directed++;
ni->ni_handler(m);
} else {
diff --git a/sys/net/netisr.h b/sys/net/netisr.h
index 78a02f7..1bc7b0c 100644
--- a/sys/net/netisr.h
+++ b/sys/net/netisr.h
@@ -83,7 +83,6 @@ typedef void netisr_t (struct mbuf *);
void netisr_dispatch(int, struct mbuf *);
int netisr_queue(int, struct mbuf *);
-#define NETISR_FORCEQUEUE 0x0002 /* Force queued dispatch. */
void netisr_register(int, netisr_t *, struct ifqueue *, int);
void netisr_unregister(int);
OpenPOWER on IntegriCloud