diff options
| author | Julian Elischer <julian@FreeBSD.org> | 2000-04-28 17:09:00 +0000 |
|---|---|---|
| committer | Julian Elischer <julian@FreeBSD.org> | 2000-04-28 17:09:00 +0000 |
| commit | a4ec03cfa87725b1890c6753970d29ecadc0ec97 (patch) | |
| tree | 36a7436d71cf8f738e7a601bf6c714bd567a4dda /sys/dev/ar | |
| parent | 8261236de4456a6ae64b5bfe71befe9d15221347 (diff) | |
Notes
Diffstat (limited to 'sys/dev/ar')
| -rw-r--r-- | sys/dev/ar/if_ar.c | 7 | ||||
| -rw-r--r-- | sys/dev/ar/if_ar_isa.c | 7 |
2 files changed, 8 insertions, 6 deletions
diff --git a/sys/dev/ar/if_ar.c b/sys/dev/ar/if_ar.c index 6f9122c22482..0c21d69690d7 100644 --- a/sys/dev/ar/if_ar.c +++ b/sys/dev/ar/if_ar.c @@ -2204,8 +2204,8 @@ ngar_newhook(node_p node, hook_p hook, const char *name) * Just respond to the generic TEXT_STATUS message */ static int -ngar_rcvmsg(node_p node, - struct ng_mesg *msg, const char *retaddr, struct ng_mesg **resp) +ngar_rcvmsg(node_p node, struct ng_mesg *msg, + const char *retaddr, struct ng_mesg **resp, hook_p lasthook) { struct ar_softc * sc; int error = 0; @@ -2273,7 +2273,8 @@ ngar_rcvmsg(node_p node, * get data from another node and transmit it to the correct channel */ static int -ngar_rcvdata(hook_p hook, struct mbuf *m, meta_p meta) +ngar_rcvdata(hook_p hook, struct mbuf *m, meta_p meta, + struct mbuf **ret_m, meta_p *ret_meta) { int s; int error = 0; diff --git a/sys/dev/ar/if_ar_isa.c b/sys/dev/ar/if_ar_isa.c index 6f9122c22482..0c21d69690d7 100644 --- a/sys/dev/ar/if_ar_isa.c +++ b/sys/dev/ar/if_ar_isa.c @@ -2204,8 +2204,8 @@ ngar_newhook(node_p node, hook_p hook, const char *name) * Just respond to the generic TEXT_STATUS message */ static int -ngar_rcvmsg(node_p node, - struct ng_mesg *msg, const char *retaddr, struct ng_mesg **resp) +ngar_rcvmsg(node_p node, struct ng_mesg *msg, + const char *retaddr, struct ng_mesg **resp, hook_p lasthook) { struct ar_softc * sc; int error = 0; @@ -2273,7 +2273,8 @@ ngar_rcvmsg(node_p node, * get data from another node and transmit it to the correct channel */ static int -ngar_rcvdata(hook_p hook, struct mbuf *m, meta_p meta) +ngar_rcvdata(hook_p hook, struct mbuf *m, meta_p meta, + struct mbuf **ret_m, meta_p *ret_meta) { int s; int error = 0; |
