ip_reass.c (15b73a2a14d12a57bcdad8e6a5945396c0fd1e51) | ip_reass.c (3d0d5b21c9b2cfd7e48209340a090f63ca4bce03) |
---|---|
1/*- 2 * Copyright (c) 2015 Gleb Smirnoff <glebius@FreeBSD.org> 3 * Copyright (c) 2015 Adrian Chadd <adrian@FreeBSD.org> 4 * Copyright (c) 1982, 1986, 1988, 1993 5 * The Regents of the University of California. All rights reserved. 6 * 7 * Redistribution and use in source and binary forms, with or without 8 * modification, are permitted provided that the following conditions --- 37 unchanged lines hidden (view full) --- 46#include <sys/limits.h> 47#include <sys/lock.h> 48#include <sys/mutex.h> 49#include <sys/sysctl.h> 50#include <sys/socket.h> 51 52#include <net/if.h> 53#include <net/if_var.h> | 1/*- 2 * Copyright (c) 2015 Gleb Smirnoff <glebius@FreeBSD.org> 3 * Copyright (c) 2015 Adrian Chadd <adrian@FreeBSD.org> 4 * Copyright (c) 1982, 1986, 1988, 1993 5 * The Regents of the University of California. All rights reserved. 6 * 7 * Redistribution and use in source and binary forms, with or without 8 * modification, are permitted provided that the following conditions --- 37 unchanged lines hidden (view full) --- 46#include <sys/limits.h> 47#include <sys/lock.h> 48#include <sys/mutex.h> 49#include <sys/sysctl.h> 50#include <sys/socket.h> 51 52#include <net/if.h> 53#include <net/if_var.h> |
54#include <net/if_private.h> |
|
54#include <net/rss_config.h> 55#include <net/netisr.h> 56#include <net/vnet.h> 57 58#include <netinet/in.h> 59#include <netinet/ip.h> 60#include <netinet/ip_var.h> 61#include <netinet/in_rss.h> --- 919 unchanged lines hidden --- | 55#include <net/rss_config.h> 56#include <net/netisr.h> 57#include <net/vnet.h> 58 59#include <netinet/in.h> 60#include <netinet/ip.h> 61#include <netinet/ip_var.h> 62#include <netinet/in_rss.h> --- 919 unchanged lines hidden --- |