main.c (712cba5d87a6c0e980ee5fad45734e189c4d7151) main.c (8e8d7f13b6d5a93b3d2cf9a4ceaaf923809fd5ac)
1/* AFS client file system
2 *
3 * Copyright (C) 2002,5 Red Hat, Inc. All Rights Reserved.
4 * Written by David Howells (dhowells@redhat.com)
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version
9 * 2 of the License, or (at your option) any later version.
10 */
11
12#include <linux/module.h>
13#include <linux/moduleparam.h>
14#include <linux/init.h>
15#include <linux/completion.h>
16#include <linux/sched.h>
17#include <linux/random.h>
1/* AFS client file system
2 *
3 * Copyright (C) 2002,5 Red Hat, Inc. All Rights Reserved.
4 * Written by David Howells (dhowells@redhat.com)
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version
9 * 2 of the License, or (at your option) any later version.
10 */
11
12#include <linux/module.h>
13#include <linux/moduleparam.h>
14#include <linux/init.h>
15#include <linux/completion.h>
16#include <linux/sched.h>
17#include <linux/random.h>
18#define CREATE_TRACE_POINTS
18#include "internal.h"
19
20MODULE_DESCRIPTION("AFS Client File System");
21MODULE_AUTHOR("Red Hat, Inc.");
22MODULE_LICENSE("GPL");
23
24unsigned afs_debug;
25module_param_named(debug, afs_debug, uint, S_IWUSR | S_IRUGO);

--- 160 unchanged lines hidden ---
19#include "internal.h"
20
21MODULE_DESCRIPTION("AFS Client File System");
22MODULE_AUTHOR("Red Hat, Inc.");
23MODULE_LICENSE("GPL");
24
25unsigned afs_debug;
26module_param_named(debug, afs_debug, uint, S_IWUSR | S_IRUGO);

--- 160 unchanged lines hidden ---