Source-Changes-HG archive

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

[src/netbsd-1-4]: src/sys/net pullup 1.42->1.43 (bouyer): allocate mbuf with ...



details:   https://anonhg.NetBSD.org/src/rev/7db7e88ee562
branches:  netbsd-1-4
changeset: 468964:7db7e88ee562
user:      perry <perry%NetBSD.org@localhost>
date:      Thu Jun 24 16:21:13 1999 +0000

description:
pullup 1.42->1.43 (bouyer): allocate mbuf with M_DONTWAIT in ether_output()

diffstat:

 sys/net/if_ethersubr.c |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (18 lines):

diff -r a566535017d8 -r 7db7e88ee562 sys/net/if_ethersubr.c
--- a/sys/net/if_ethersubr.c    Thu Jun 24 16:18:20 1999 +0000
+++ b/sys/net/if_ethersubr.c    Thu Jun 24 16:21:13 1999 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: if_ethersubr.c,v 1.41 1999/03/10 21:05:08 thorpej Exp $        */
+/*     $NetBSD: if_ethersubr.c,v 1.41.2.1 1999/06/24 16:21:13 perry Exp $      */
 
 /*
  * Copyright (c) 1982, 1989, 1993
@@ -245,7 +245,7 @@
                if (aa->aa_flags & AFA_PHASE2) {
                        struct llc llc;
 
-                       M_PREPEND(m, sizeof(struct llc), M_WAIT);
+                       M_PREPEND(m, sizeof(struct llc), M_DONTWAIT);
                        llc.llc_dsap = llc.llc_ssap = LLC_SNAP_LSAP;
                        llc.llc_control = LLC_UI;
                        bcopy(at_org_code, llc.llc_snap_org_code,



Home | Main Index | Thread Index | Old Index