utils.c (c1b054d03f5b31c33eaa0b267c629b118eaf3790) utils.c (20380731bc2897f2952ae055420972ded4cd786e)
1/*
2 * Generic address resultion entity
3 *
4 * Authors:
5 * net_random Alan Cox
6 * net_ratelimit Andy Kleen
7 *
8 * Created by Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
9 *
10 * This program is free software; you can redistribute it and/or
11 * modify it under the terms of the GNU General Public License
12 * as published by the Free Software Foundation; either version
13 * 2 of the License, or (at your option) any later version.
14 */
15
16#include <linux/module.h>
17#include <linux/jiffies.h>
18#include <linux/kernel.h>
1/*
2 * Generic address resultion entity
3 *
4 * Authors:
5 * net_random Alan Cox
6 * net_ratelimit Andy Kleen
7 *
8 * Created by Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
9 *
10 * This program is free software; you can redistribute it and/or
11 * modify it under the terms of the GNU General Public License
12 * as published by the Free Software Foundation; either version
13 * 2 of the License, or (at your option) any later version.
14 */
15
16#include <linux/module.h>
17#include <linux/jiffies.h>
18#include <linux/kernel.h>
19#include <linux/inet.h>
19#include <linux/mm.h>
20#include <linux/mm.h>
21#include <linux/net.h>
20#include <linux/string.h>
21#include <linux/types.h>
22#include <linux/random.h>
23#include <linux/percpu.h>
24#include <linux/init.h>
25
26#include <asm/byteorder.h>
27#include <asm/system.h>

--- 163 unchanged lines hidden ---
22#include <linux/string.h>
23#include <linux/types.h>
24#include <linux/random.h>
25#include <linux/percpu.h>
26#include <linux/init.h>
27
28#include <asm/byteorder.h>
29#include <asm/system.h>

--- 163 unchanged lines hidden ---