In generic/252, aiocp with DIRECT will fail and return EINVAL on 4096 sector size block device, because the default 512 alignment defined in aiocp is not aligned with 4096. Please see the following error: ---------------------------------------------------------- read missing bytes expect 8388608 got -22 ---------------------------------------------------------- aiocp with DIRECT should set a proper alignment if -a option is not specified. Signed-off-by: Xiao Yang <yangx.jy@xxxxxxxxxxxxxx> --- src/aio-dio-regress/aiocp.c | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/src/aio-dio-regress/aiocp.c b/src/aio-dio-regress/aiocp.c index 7e71cc5..57e9d35 100644 --- a/src/aio-dio-regress/aiocp.c +++ b/src/aio-dio-regress/aiocp.c @@ -40,6 +40,8 @@ #include <errno.h> #include <stdlib.h> #include <sys/select.h> +#include <sys/ioctl.h> +#include <sys/mount.h> #include <libaio.h> @@ -69,6 +71,28 @@ int alignment = 512; /* buffer alignment */ struct timeval delay; /* delay between i/o */ +static int get_sector_size(void) +{ + int fd, ret; + int sector_size; + char *name; + + name = getenv("TEST_DEV"); + if (!name) + return alignment; + + fd = open(name, O_RDONLY); + if (fd < 0) + return alignment; + + ret = ioctl(fd, BLKSSZGET, §or_size); + close(fd); + if (ret < 0) + return alignment; + + return sector_size; +} + int init_iocb(int n, int iosize) { void *buf; @@ -259,6 +283,7 @@ int main(int argc, char *const *argv) int c; extern char *optarg; extern int optind, opterr, optopt; + int aligned = 0; while ((c = getopt(argc, argv, "a:b:df:n:s:wzD:")) != -1) { char *endp; @@ -268,6 +293,7 @@ int main(int argc, char *const *argv) alignment = strtol(optarg, &endp, 0); alignment = (long)scale_by_kmg((long long)alignment, *endp); + aligned = 1; break; case 'f': /* use these open flags */ if (strcmp(optarg, "LARGEFILE") == 0 || @@ -334,6 +360,10 @@ int main(int argc, char *const *argv) srcname = "junkdata"; dstname = "ff2"; #endif + + if (!aligned && (source_open_flag & O_DIRECT)) + alignment = get_sector_size(); + if (!zero) { #ifndef DEBUG if ((srcfd = open(srcname = *argv, source_open_flag)) < 0) { -- 1.8.3.1 -- To unsubscribe from this list: send the line "unsubscribe fstests" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html