Deleted Added
full compact
if_arcsubr.c (94660) if_arcsubr.c (105228)
1/* $NetBSD: if_arcsubr.c,v 1.36 2001/06/14 05:44:23 itojun Exp $ */
1/* $NetBSD: if_arcsubr.c,v 1.36 2001/06/14 05:44:23 itojun Exp $ */
2/* $FreeBSD: head/sys/net/if_arcsubr.c 94660 2002-04-14 16:40:11Z fjoe $ */
2/* $FreeBSD: head/sys/net/if_arcsubr.c 105228 2002-10-16 10:45:53Z phk $ */
3
4/*
5 * Copyright (c) 1994, 1995 Ignatios Souvatzis
6 * Copyright (c) 1982, 1989, 1993
7 * The Regents of the University of California. All rights reserved.
8 *
9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted provided that the following conditions

--- 337 unchanged lines hidden (view full) ---

348 return m;
349}
350
351/*
352 * Defragmenter. Returns mbuf if last packet found, else
353 * NULL. frees imcoming mbuf as necessary.
354 */
355
3
4/*
5 * Copyright (c) 1994, 1995 Ignatios Souvatzis
6 * Copyright (c) 1982, 1989, 1993
7 * The Regents of the University of California. All rights reserved.
8 *
9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted provided that the following conditions

--- 337 unchanged lines hidden (view full) ---

348 return m;
349}
350
351/*
352 * Defragmenter. Returns mbuf if last packet found, else
353 * NULL. frees imcoming mbuf as necessary.
354 */
355
356__inline struct mbuf *
356static __inline struct mbuf *
357arc_defrag(ifp, m)
358 struct ifnet *ifp;
359 struct mbuf *m;
360{
361 struct arc_header *ah, *ah1;
362 struct arccom *ac;
363 struct ac_frag *af;
364 struct mbuf *m1;

--- 414 unchanged lines hidden ---
357arc_defrag(ifp, m)
358 struct ifnet *ifp;
359 struct mbuf *m;
360{
361 struct arc_header *ah, *ah1;
362 struct arccom *ac;
363 struct ac_frag *af;
364 struct mbuf *m1;

--- 414 unchanged lines hidden ---