#include <linux/module.h>
#include <linux/moduleparam.h>
#include <linux/sched.h>
#include <linux/fs.h>
#include <linux/file.h>
#include <linux/stat.h>
#include <linux/errno.h>
#include <linux/major.h>
#include <linux/wait.h>
#include <linux/blkdev.h>
#include <linux/blkpg.h>
#include <linux/init.h>
#include <linux/swap.h>
#include <linux/slab.h>
#include <linux/loop.h>
#include <linux/compat.h>
#include <linux/suspend.h>
#include <linux/freezer.h>
#include <linux/mutex.h>
#include <linux/writeback.h>
#include <linux/completion.h>
#include <linux/highmem.h>
#include <linux/kthread.h>
#include <linux/splice.h>
#include <linux/sysfs.h>
#include <linux/miscdevice.h>
#include <linux/falloc.h>
#include <asm/uaccess.h>
Go to the source code of this file.
#define LOOP_ATTR_RO |
( |
|
_name | ) |
|
Value:
{ \
return loop_attr_show(
d,
b, loop_attr_##_name##_show); \
} \
__ATTR(_name,
S_IRUGO, loop_attr_do_show_##_name,
NULL);
Definition at line 690 of file loop.c.
LOOP_ATTR_RO |
( |
sizelimit |
| ) |
|
LOOP_ATTR_RO |
( |
autoclear |
| ) |
|
LOOP_ATTR_RO |
( |
partscan |
| ) |
|
int loop_unregister_transfer |
( |
int |
number | ) |
|
MODULE_ALIAS |
( |
"devname:loop-control" |
| ) |
|
module_exit |
( |
loop_exit |
| ) |
|
module_init |
( |
loop_init |
| ) |
|
MODULE_PARM_DESC |
( |
max_part |
, |
|
|
"Maximum number of partitions per loop device" |
|
|
) |
| |