FreeBSD Bugzilla – Attachment 215365 Details for
Bug 242406
mpd & 3G USB modem: Fatal trap 12: page fault while in kernel mode
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
[patch]
proposed patch
diff (text/plain), 922 bytes, created by
Mark Johnston
on 2020-06-08 16:32:15 UTC
(
hide
)
Description:
proposed patch
Filename:
MIME Type:
Creator:
Mark Johnston
Created:
2020-06-08 16:32:15 UTC
Size:
922 bytes
patch
obsolete
>diff --git a/sys/netgraph/ng_tty.c b/sys/netgraph/ng_tty.c >index 6dcd262a47e2..be8e9ab0308d 100644 >--- a/sys/netgraph/ng_tty.c >+++ b/sys/netgraph/ng_tty.c >@@ -439,10 +439,10 @@ ngt_rint_bypass(struct tty *tp, const void *buf, size_t len) > * Odd, we have changed from non-bypass to bypass. It is > * unlikely but not impossible, flush the data first. > */ >- NG_SEND_DATA_ONLY(error, sc->hook, sc->m); >+ NG_SEND_DATA_FLAGS(error, sc->hook, sc->m, NG_QUEUE); > sc->m = NULL; > } >- NG_SEND_DATA_ONLY(error, sc->hook, m); >+ NG_SEND_DATA_FLAGS(error, sc->hook, m, NG_QUEUE); > > return (total); > } >@@ -495,7 +495,7 @@ ngt_rint(struct tty *tp, char c, int flags) > /* Ship off mbuf if it's time */ > if (sc->hotchar == -1 || c == sc->hotchar || m->m_len >= MHLEN) { > sc->m = NULL; >- NG_SEND_DATA_ONLY(error, sc->hook, m); /* Will queue */ >+ NG_SEND_DATA_FLAGS(error, sc->hook, m, NG_QUEUE); > } > > return (error);
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 242406
:
209654
|
209655
|
209656
|
209657
| 215365 |
215657