disk-io.c (677074792a1d533232ec5517f23f78d64e6dffac) | disk-io.c (2fc6822c99d7e902b7cef146efa37420d41c0c59) |
---|---|
1// SPDX-License-Identifier: GPL-2.0 2/* 3 * Copyright (C) 2007 Oracle. All rights reserved. 4 */ 5 6#include <linux/fs.h> 7#include <linux/blkdev.h> 8#include <linux/radix-tree.h> --- 36 unchanged lines hidden (view full) --- 45#include "subpage.h" 46#include "fs.h" 47#include "accessors.h" 48#include "extent-tree.h" 49#include "root-tree.h" 50#include "defrag.h" 51#include "uuid-tree.h" 52#include "relocation.h" | 1// SPDX-License-Identifier: GPL-2.0 2/* 3 * Copyright (C) 2007 Oracle. All rights reserved. 4 */ 5 6#include <linux/fs.h> 7#include <linux/blkdev.h> 8#include <linux/radix-tree.h> --- 36 unchanged lines hidden (view full) --- 45#include "subpage.h" 46#include "fs.h" 47#include "accessors.h" 48#include "extent-tree.h" 49#include "root-tree.h" 50#include "defrag.h" 51#include "uuid-tree.h" 52#include "relocation.h" |
53#include "scrub.h" |
|
53 54#define BTRFS_SUPER_FLAG_SUPP (BTRFS_HEADER_FLAG_WRITTEN |\ 55 BTRFS_HEADER_FLAG_RELOC |\ 56 BTRFS_SUPER_FLAG_ERROR |\ 57 BTRFS_SUPER_FLAG_SEEDING |\ 58 BTRFS_SUPER_FLAG_METADUMP |\ 59 BTRFS_SUPER_FLAG_METADUMP_V2) 60 --- 5264 unchanged lines hidden --- | 54 55#define BTRFS_SUPER_FLAG_SUPP (BTRFS_HEADER_FLAG_WRITTEN |\ 56 BTRFS_HEADER_FLAG_RELOC |\ 57 BTRFS_SUPER_FLAG_ERROR |\ 58 BTRFS_SUPER_FLAG_SEEDING |\ 59 BTRFS_SUPER_FLAG_METADUMP |\ 60 BTRFS_SUPER_FLAG_METADUMP_V2) 61 --- 5264 unchanged lines hidden --- |