dev-replace.c (07e81dc94474eb62705c6f96d9ab1a5a797b8703) | dev-replace.c (2fc6822c99d7e902b7cef146efa37420d41c0c59) |
---|---|
1// SPDX-License-Identifier: GPL-2.0 2/* 3 * Copyright (C) STRATO AG 2012. All rights reserved. 4 */ 5 6#include <linux/sched.h> 7#include <linux/bio.h> 8#include <linux/slab.h> --- 11 unchanged lines hidden (view full) --- 20#include "check-integrity.h" 21#include "rcu-string.h" 22#include "dev-replace.h" 23#include "sysfs.h" 24#include "zoned.h" 25#include "block-group.h" 26#include "fs.h" 27#include "accessors.h" | 1// SPDX-License-Identifier: GPL-2.0 2/* 3 * Copyright (C) STRATO AG 2012. All rights reserved. 4 */ 5 6#include <linux/sched.h> 7#include <linux/bio.h> 8#include <linux/slab.h> --- 11 unchanged lines hidden (view full) --- 20#include "check-integrity.h" 21#include "rcu-string.h" 22#include "dev-replace.h" 23#include "sysfs.h" 24#include "zoned.h" 25#include "block-group.h" 26#include "fs.h" 27#include "accessors.h" |
28#include "scrub.h" |
|
28 29/* 30 * Device replace overview 31 * 32 * [Objective] 33 * To copy all extents (both new and on-disk) from source device to target 34 * device, while still keeping the filesystem read-write. 35 * --- 1272 unchanged lines hidden --- | 29 30/* 31 * Device replace overview 32 * 33 * [Objective] 34 * To copy all extents (both new and on-disk) from source device to target 35 * device, while still keeping the filesystem read-write. 36 * --- 1272 unchanged lines hidden --- |