Deleted Added
full compact
if_stf.c (257176) if_stf.c (262763)
1/* $FreeBSD: head/sys/net/if_stf.c 257176 2013-10-26 17:58:36Z glebius $ */
1/* $FreeBSD: head/sys/net/if_stf.c 262763 2014-03-05 01:17:47Z glebius $ */
2/* $KAME: if_stf.c,v 1.73 2001/12/03 11:08:30 keiichi Exp $ */
3
4/*-
5 * Copyright (C) 2000 WIDE Project.
6 * All rights reserved.
7 *
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions

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

780/* ARGSUSED */
781static void
782stf_rtrequest(cmd, rt, info)
783 int cmd;
784 struct rtentry *rt;
785 struct rt_addrinfo *info;
786{
787 RT_LOCK_ASSERT(rt);
2/* $KAME: if_stf.c,v 1.73 2001/12/03 11:08:30 keiichi Exp $ */
3
4/*-
5 * Copyright (C) 2000 WIDE Project.
6 * All rights reserved.
7 *
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions

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

780/* ARGSUSED */
781static void
782stf_rtrequest(cmd, rt, info)
783 int cmd;
784 struct rtentry *rt;
785 struct rt_addrinfo *info;
786{
787 RT_LOCK_ASSERT(rt);
788 rt->rt_rmx.rmx_mtu = rt->rt_ifp->if_mtu;
788 rt->rt_mtu = rt->rt_ifp->if_mtu;
789}
790
791static int
792stf_ioctl(ifp, cmd, data)
793 struct ifnet *ifp;
794 u_long cmd;
795 caddr_t data;
796{

--- 57 unchanged lines hidden ---
789}
790
791static int
792stf_ioctl(ifp, cmd, data)
793 struct ifnet *ifp;
794 u_long cmd;
795 caddr_t data;
796{

--- 57 unchanged lines hidden ---