volumes.c (677074792a1d533232ec5517f23f78d64e6dffac) volumes.c (2fc6822c99d7e902b7cef146efa37420d41c0c59)
1// SPDX-License-Identifier: GPL-2.0
2/*
3 * Copyright (C) 2007 Oracle. All rights reserved.
4 */
5
6#include <linux/sched.h>
7#include <linux/sched/mm.h>
8#include <linux/bio.h>

--- 24 unchanged lines hidden (view full) ---

33#include "block-group.h"
34#include "discard.h"
35#include "zoned.h"
36#include "fs.h"
37#include "accessors.h"
38#include "uuid-tree.h"
39#include "ioctl.h"
40#include "relocation.h"
1// SPDX-License-Identifier: GPL-2.0
2/*
3 * Copyright (C) 2007 Oracle. All rights reserved.
4 */
5
6#include <linux/sched.h>
7#include <linux/sched/mm.h>
8#include <linux/bio.h>

--- 24 unchanged lines hidden (view full) ---

33#include "block-group.h"
34#include "discard.h"
35#include "zoned.h"
36#include "fs.h"
37#include "accessors.h"
38#include "uuid-tree.h"
39#include "ioctl.h"
40#include "relocation.h"
41#include "scrub.h"
41
42static struct bio_set btrfs_bioset;
43
44#define BTRFS_BLOCK_GROUP_STRIPE_MASK (BTRFS_BLOCK_GROUP_RAID0 | \
45 BTRFS_BLOCK_GROUP_RAID10 | \
46 BTRFS_BLOCK_GROUP_RAID56_MASK)
47
48const struct btrfs_raid_attr btrfs_raid_array[BTRFS_NR_RAID_TYPES] = {

--- 8412 unchanged lines hidden ---
42
43static struct bio_set btrfs_bioset;
44
45#define BTRFS_BLOCK_GROUP_STRIPE_MASK (BTRFS_BLOCK_GROUP_RAID0 | \
46 BTRFS_BLOCK_GROUP_RAID10 | \
47 BTRFS_BLOCK_GROUP_RAID56_MASK)
48
49const struct btrfs_raid_attr btrfs_raid_array[BTRFS_NR_RAID_TYPES] = {

--- 8412 unchanged lines hidden ---