mirror of
https://github.com/trapexit/mergerfs.git
synced 2025-01-20 19:03:58 +08:00
make fs::attr return ENOTSUP on EINVAL #381
This commit is contained in:
parent
3728e39655
commit
c043ef95a3
|
@ -35,7 +35,13 @@ namespace fs
|
|||
get_fs_ioc_flags(const int fd,
|
||||
int &flags)
|
||||
{
|
||||
return fs::ioctl(fd,FS_IOC_GETFLAGS,(void*)&flags);
|
||||
int rv;
|
||||
|
||||
rv = fs::ioctl(fd,FS_IOC_GETFLAGS,(void*)&flags);
|
||||
if((rv == -1) && (errno == EINVAL))
|
||||
errno = ENOTSUP;
|
||||
|
||||
return rv;
|
||||
}
|
||||
|
||||
static
|
||||
|
@ -68,7 +74,13 @@ namespace fs
|
|||
set_fs_ioc_flags(const int fd,
|
||||
const int flags)
|
||||
{
|
||||
return fs::ioctl(fd,FS_IOC_SETFLAGS,(void*)&flags);
|
||||
int rv;
|
||||
|
||||
rv = fs::ioctl(fd,FS_IOC_SETFLAGS,(void*)&flags);
|
||||
if((rv == -1) && (errno == EINVAL))
|
||||
errno = ENOTSUP;
|
||||
|
||||
return rv;
|
||||
}
|
||||
|
||||
static
|
||||
|
|
|
@ -26,14 +26,14 @@ namespace fs
|
|||
copy(const int fdin,
|
||||
const int fdout)
|
||||
{
|
||||
return ENOTSUP;
|
||||
return (errno=ENOTSUP,-1);
|
||||
}
|
||||
|
||||
int
|
||||
copy(const std::string &from,
|
||||
const std::string &to)
|
||||
{
|
||||
return ENOTSUP;
|
||||
return (errno=ENOTSUP,-1);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user