mmap errno 22 in c 读取openmp数据类型描述
mmap errno 22 in c reading openmpi datatype decription
我正在使用 mmap 从文件中读取。
mmap returns errno 22,参数无效。
本例中的 stat.st_size 是 400,我认为它不是 "too large"。
我不认为我遇到 "we dont like addr, length or offset".
我在 Intel Xeon E5 上 运行 这个程序(我认为它不相关)。
我在这里错过了什么?
if( argc > 1 ) {
struct stat stat;
for( int i = 1; i < argc; i++ ) {
if( access(argv[i], R_OK) == -1 ) {
printf("\n Cannot access datatype description file %s\n", argv[i]);
continue;
}
int fd = open(argv[i], O_RDONLY);
if( fd == -1 ) {
printf("\n Cannot open datatype description from file %s\n", argv[i]);
continue;
}
if( fstat(fd, &stat) == -1 ) {
printf("\n Cannot stat the %s file\n", argv[i]);
continue;
}
void* addr = mmap(NULL, stat.st_size, PROT_READ, MAP_FILE, fd, 0);
if( MAP_FAILED == addr ) {
printf("\nCannot map the datatype description file %s\n", argv[i]);
printf("%s %d stat.st_size %d\n", strerror(errno), errno, stat.st_size );
perror("mmap");
close(fd);
continue;
}
munmap(addr, stat.st_size);
free(addr);
close(fd);
}
}
来自man 2 mmap
:
MAP_FILE
Compatibility flag. Ignored.
...
EINVAL flags contained neither MAP_PRIVATE or MAP_SHARED, or contained
both of these values.
你需要通过MAP_PRIVATE
或MAP_SHARED
之一,你应该停止通过MAP_FILE
。 (你甚至认为它做了什么?)
我正在使用 mmap 从文件中读取。
mmap returns errno 22,参数无效。
本例中的 stat.st_size 是 400,我认为它不是 "too large"。
我不认为我遇到 "we dont like addr, length or offset".
我在 Intel Xeon E5 上 运行 这个程序(我认为它不相关)。
我在这里错过了什么?
if( argc > 1 ) {
struct stat stat;
for( int i = 1; i < argc; i++ ) {
if( access(argv[i], R_OK) == -1 ) {
printf("\n Cannot access datatype description file %s\n", argv[i]);
continue;
}
int fd = open(argv[i], O_RDONLY);
if( fd == -1 ) {
printf("\n Cannot open datatype description from file %s\n", argv[i]);
continue;
}
if( fstat(fd, &stat) == -1 ) {
printf("\n Cannot stat the %s file\n", argv[i]);
continue;
}
void* addr = mmap(NULL, stat.st_size, PROT_READ, MAP_FILE, fd, 0);
if( MAP_FAILED == addr ) {
printf("\nCannot map the datatype description file %s\n", argv[i]);
printf("%s %d stat.st_size %d\n", strerror(errno), errno, stat.st_size );
perror("mmap");
close(fd);
continue;
}
munmap(addr, stat.st_size);
free(addr);
close(fd);
}
}
来自man 2 mmap
:
MAP_FILE
Compatibility flag. Ignored.
...
EINVAL flags contained neither MAP_PRIVATE or MAP_SHARED, or contained
both of these values.
你需要通过MAP_PRIVATE
或MAP_SHARED
之一,你应该停止通过MAP_FILE
。 (你甚至认为它做了什么?)