Lines Matching defs:swidth
1208 geo->swidth = sbp->sb_width;
1320 * sunit, swidth, sectorsize(optional with 0) should be all in bytes,
1327 __s64 swidth,
1331 if (swidth > INT_MAX) {
1334 "stripe width (%lld) is too large", swidth);
1338 if (sunit > swidth) {
1341 "stripe unit (%lld) is larger than the stripe width (%lld)", sunit, swidth);
1353 if (sunit && !swidth) {
1360 if (!sunit && swidth) {
1363 "invalid stripe width (%lld) and stripe unit of 0", swidth);
1367 if (sunit && (int)swidth % (int)sunit) {
1371 swidth, sunit);