2014-05-13 00:41:46 +08:00
|
|
|
/*
|
2016-01-15 05:50:22 +08:00
|
|
|
Copyright (c) 2016, Antonio SJ Musumeci <trapexit@spawn.link>
|
2014-05-13 00:41:46 +08:00
|
|
|
|
2016-01-15 05:50:22 +08:00
|
|
|
Permission to use, copy, modify, and/or distribute this software for any
|
|
|
|
purpose with or without fee is hereby granted, provided that the above
|
|
|
|
copyright notice and this permission notice appear in all copies.
|
2014-05-13 00:41:46 +08:00
|
|
|
|
2016-01-15 05:50:22 +08:00
|
|
|
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
|
|
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
|
|
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
|
|
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
|
|
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
|
|
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
|
|
|
OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
2014-05-13 00:41:46 +08:00
|
|
|
*/
|
|
|
|
|
2016-09-14 20:36:06 +08:00
|
|
|
#include "errno.hpp"
|
2015-09-16 06:49:18 +08:00
|
|
|
#include "fileinfo.hpp"
|
2017-04-07 11:35:31 +08:00
|
|
|
#include "fs_base_fallocate.hpp"
|
2015-09-16 06:49:18 +08:00
|
|
|
|
2019-01-25 20:03:46 +08:00
|
|
|
#include <fuse.h>
|
|
|
|
|
|
|
|
namespace l
|
2014-05-13 00:41:46 +08:00
|
|
|
{
|
2019-01-25 20:03:46 +08:00
|
|
|
static
|
|
|
|
int
|
|
|
|
fallocate(const int fd_,
|
|
|
|
const int mode_,
|
|
|
|
const off_t offset_,
|
|
|
|
const off_t len_)
|
|
|
|
{
|
|
|
|
int rv;
|
2014-05-13 00:41:46 +08:00
|
|
|
|
2019-01-25 20:03:46 +08:00
|
|
|
rv = fs::fallocate(fd_,mode_,offset_,len_);
|
2014-05-13 00:41:46 +08:00
|
|
|
|
2019-01-25 20:03:46 +08:00
|
|
|
return ((rv == -1) ? -errno : 0);
|
|
|
|
}
|
2014-05-13 00:41:46 +08:00
|
|
|
}
|
|
|
|
|
2019-01-25 20:03:46 +08:00
|
|
|
namespace FUSE
|
2014-05-13 00:41:46 +08:00
|
|
|
{
|
2019-01-25 20:03:46 +08:00
|
|
|
int
|
2020-07-09 07:25:23 +08:00
|
|
|
fallocate(int mode_,
|
2019-01-25 20:03:46 +08:00
|
|
|
off_t offset_,
|
|
|
|
off_t len_,
|
|
|
|
fuse_file_info *ffi_)
|
2014-05-13 00:41:46 +08:00
|
|
|
{
|
2019-01-25 20:03:46 +08:00
|
|
|
FileInfo *fi = reinterpret_cast<FileInfo*>(ffi_->fh);
|
|
|
|
|
|
|
|
return l::fallocate(fi->fd,
|
|
|
|
mode_,
|
|
|
|
offset_,
|
|
|
|
len_);
|
2014-05-13 00:41:46 +08:00
|
|
|
}
|
|
|
|
}
|