/* SPDX-License-Identifier: GPL-2.0 */ #ifndef _RAID0_H #define _RAID0_H struct strip_zone { … }; /* Linux 3.14 (20d0189b101) made an unintended change to * the RAID0 layout for multi-zone arrays (where devices aren't all * the same size. * RAID0_ORIG_LAYOUT restores the original layout * RAID0_ALT_MULTIZONE_LAYOUT uses the altered layout * The layouts are identical when there is only one zone (all * devices the same size). */ enum r0layout { … }; struct r0conf { … }; #endif