main.c (e5451c8f8330e03ad3cfa16048b4daf961af434f) | main.c (e0661dfc5961cf14f255fa5466041a961ca2ebdf) |
---|---|
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> | 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> |
|
17#include "internal.h" 18 19MODULE_DESCRIPTION("AFS Client File System"); 20MODULE_AUTHOR("Red Hat, Inc."); 21MODULE_LICENSE("GPL"); 22 23unsigned afs_debug; 24module_param_named(debug, afs_debug, uint, S_IWUSR | S_IRUGO); --- 160 unchanged lines hidden --- | 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 --- |