super.c (d13240dd0a2d13bce6039cc51990613b30d47bc4) | super.c (9aa29a20b70097213d10e03a452366ceea72fc02) |
---|---|
1// SPDX-License-Identifier: GPL-2.0 2/* 3 * Copyright (C) 2007 Oracle. All rights reserved. 4 */ 5 6#include <linux/blkdev.h> 7#include <linux/module.h> 8#include <linux/fs.h> --- 20 unchanged lines hidden (view full) --- 29#include <linux/security.h> 30#include <linux/fs_parser.h> 31#include "messages.h" 32#include "delayed-inode.h" 33#include "ctree.h" 34#include "disk-io.h" 35#include "transaction.h" 36#include "btrfs_inode.h" | 1// SPDX-License-Identifier: GPL-2.0 2/* 3 * Copyright (C) 2007 Oracle. All rights reserved. 4 */ 5 6#include <linux/blkdev.h> 7#include <linux/module.h> 8#include <linux/fs.h> --- 20 unchanged lines hidden (view full) --- 29#include <linux/security.h> 30#include <linux/fs_parser.h> 31#include "messages.h" 32#include "delayed-inode.h" 33#include "ctree.h" 34#include "disk-io.h" 35#include "transaction.h" 36#include "btrfs_inode.h" |
37#include "direct-io.h" |
|
37#include "props.h" 38#include "xattr.h" 39#include "bio.h" 40#include "export.h" 41#include "compression.h" 42#include "dev-replace.h" 43#include "free-space-cache.h" 44#include "backref.h" --- 2440 unchanged lines hidden (view full) --- 2485 .exit_func = btrfs_exit_sysfs, 2486 }, { 2487 .init_func = btrfs_init_compress, 2488 .exit_func = btrfs_exit_compress, 2489 }, { 2490 .init_func = btrfs_init_cachep, 2491 .exit_func = btrfs_destroy_cachep, 2492 }, { | 38#include "props.h" 39#include "xattr.h" 40#include "bio.h" 41#include "export.h" 42#include "compression.h" 43#include "dev-replace.h" 44#include "free-space-cache.h" 45#include "backref.h" --- 2440 unchanged lines hidden (view full) --- 2486 .exit_func = btrfs_exit_sysfs, 2487 }, { 2488 .init_func = btrfs_init_compress, 2489 .exit_func = btrfs_exit_compress, 2490 }, { 2491 .init_func = btrfs_init_cachep, 2492 .exit_func = btrfs_destroy_cachep, 2493 }, { |
2494 .init_func = btrfs_init_dio, 2495 .exit_func = btrfs_destroy_dio, 2496 }, { |
|
2493 .init_func = btrfs_transaction_init, 2494 .exit_func = btrfs_transaction_exit, 2495 }, { 2496 .init_func = btrfs_ctree_init, 2497 .exit_func = btrfs_ctree_exit, 2498 }, { 2499 .init_func = btrfs_free_space_init, 2500 .exit_func = btrfs_free_space_exit, --- 89 unchanged lines hidden --- | 2497 .init_func = btrfs_transaction_init, 2498 .exit_func = btrfs_transaction_exit, 2499 }, { 2500 .init_func = btrfs_ctree_init, 2501 .exit_func = btrfs_ctree_exit, 2502 }, { 2503 .init_func = btrfs_free_space_init, 2504 .exit_func = btrfs_free_space_exit, --- 89 unchanged lines hidden --- |