#include <linux/module.h>
#include <linux/fs.h>
#include <linux/types.h>
#include <linux/slab.h>
#include <linux/highmem.h>
#include <linux/init.h>
#include <linux/random.h>
#include <linux/statfs.h>
#include <linux/moduleparam.h>
#include <linux/blkdev.h>
#include <linux/socket.h>
#include <linux/inet.h>
#include <linux/parser.h>
#include <linux/crc32.h>
#include <linux/debugfs.h>
#include <linux/mount.h>
#include <linux/seq_file.h>
#include <linux/quotaops.h>
#include <linux/cleancache.h>
#include "ocfs2_trace.h"
#include <cluster/masklog.h>
#include "ocfs2.h"
#include "ocfs1_fs_compat.h"
#include "alloc.h"
#include "aops.h"
#include "blockcheck.h"
#include "dlmglue.h"
#include "export.h"
#include "extent_map.h"
#include "heartbeat.h"
#include "inode.h"
#include "journal.h"
#include "localalloc.h"
#include "namei.h"
#include "slot_map.h"
#include "super.h"
#include "sysfile.h"
#include "uptodate.h"
#include "ver.h"
#include "xattr.h"
#include "quota.h"
#include "refcounttree.h"
#include "suballoc.h"
#include "buffer_head_io.h"
Go to the source code of this file.
|
enum | {
Opt_barrier,
Opt_err_panic,
Opt_err_ro,
Opt_intr,
Opt_nointr,
Opt_hb_none,
Opt_hb_local,
Opt_hb_global,
Opt_data_ordered,
Opt_data_writeback,
Opt_atime_quantum,
Opt_slot,
Opt_commit,
Opt_localalloc,
Opt_localflocks,
Opt_stack,
Opt_user_xattr,
Opt_nouser_xattr,
Opt_inode64,
Opt_acl,
Opt_noacl,
Opt_usrquota,
Opt_grpquota,
Opt_coherency_buffered,
Opt_coherency_full,
Opt_resv_level,
Opt_dir_resv_level,
Opt_err
} |
|
#define CREATE_TRACE_POINTS |
- Enumerator:
Opt_barrier |
|
Opt_err_panic |
|
Opt_err_ro |
|
Opt_intr |
|
Opt_nointr |
|
Opt_hb_none |
|
Opt_hb_local |
|
Opt_hb_global |
|
Opt_data_ordered |
|
Opt_data_writeback |
|
Opt_atime_quantum |
|
Opt_slot |
|
Opt_commit |
|
Opt_localalloc |
|
Opt_localflocks |
|
Opt_stack |
|
Opt_user_xattr |
|
Opt_nouser_xattr |
|
Opt_inode64 |
|
Opt_acl |
|
Opt_noacl |
|
Opt_usrquota |
|
Opt_grpquota |
|
Opt_coherency_buffered |
|
Opt_coherency_full |
|
Opt_resv_level |
|
Opt_dir_resv_level |
|
Opt_err |
|
Definition at line 160 of file super.c.
MODULE_AUTHOR |
( |
"Oracle" |
| ) |
|
module_exit |
( |
ocfs2_exit |
| ) |
|
module_init |
( |
ocfs2_init |
| ) |
|