From: Kevin Wolf <kwolf@redhat.com>
To: "Philippe Mathieu-Daudé" <f4bug@amsat.org>
Cc: Ed Maste <emaste@freebsd.org>,
qemu-block@nongnu.org, Kyle Evans <kevans@freebsd.org>,
qemu-devel@nongnu.org,
Fabrice Fontaine <fontaine.fabrice@gmail.com>,
Hanna Reitz <hreitz@redhat.com>, Li-Wen Hsu <lwhsu@freebsd.org>
Subject: Re: [RFC PATCH] block/export/fuse: Fix build failure on FreeBSD
Date: Thu, 27 Jan 2022 17:15:43 +0100 [thread overview]
Message-ID: <YfLFLzOsqlzJUvNq@redhat.com> (raw)
In-Reply-To: <20220122134940.401590-1-f4bug@amsat.org>
Am 22.01.2022 um 14:49 hat Philippe Mathieu-Daudé geschrieben:
> When building on FreeBSD we get:
>
> [816/6851] Compiling C object libblockdev.fa.p/block_export_fuse.c.o
> ../block/export/fuse.c:628:16: error: use of undeclared identifier 'FALLOC_FL_KEEP_SIZE'
> if (mode & FALLOC_FL_KEEP_SIZE) {
> ^
> ../block/export/fuse.c:632:16: error: use of undeclared identifier 'FALLOC_FL_PUNCH_HOLE'
> if (mode & FALLOC_FL_PUNCH_HOLE) {
> ^
> ../block/export/fuse.c:633:22: error: use of undeclared identifier 'FALLOC_FL_KEEP_SIZE'
> if (!(mode & FALLOC_FL_KEEP_SIZE)) {
> ^
> 3 errors generated.
> FAILED: libblockdev.fa.p/block_export_fuse.c.o
>
> Meson indeed reported FALLOC_FL_PUNCH_HOLE is not available:
>
> C compiler for the host machine: cc (clang 10.0.1 "FreeBSD clang version 10.0.1")
> Checking for function "fallocate" : NO
> Checking for function "posix_fallocate" : YES
> Header <linux/falloc.h> has symbol "FALLOC_FL_PUNCH_HOLE" : NO
> Header <linux/falloc.h> has symbol "FALLOC_FL_ZERO_RANGE" : NO
> ...
>
> Similarly to commit 304332039 ("block/export/fuse.c: fix musl build"),
> guard the code requiring FALLOC_FL_KEEP_SIZE / FALLOC_FL_PUNCH_HOLE
> definitions under CONFIG_FALLOCATE_PUNCH_HOLE #ifdef'ry.
>
> Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
> ---
> Fragile #ifdef'ry... Any clever idea?
I guess we could reorder things. The last case (!mode) is mutually
exclusive with the other conditions, so checking it first doesn't make a
difference, and then you can #ifdef things out more cleanly.
> ERROR: else should follow close brace '}'
> #17: FILE: block/export/fuse.c:647:
> }
> + else
>
> ERROR: else should follow close brace '}'
> #29: FILE: block/export/fuse.c:670:
> }
> + else
>
> total: 2 errors, 0 warnings, 28 lines checked
On the other hand, I'm not really worried about these either. The only
way this could fail in the future is build errors, which are obvious and
quick to fix.
If you hadn't marked this an RFC, I think I would just have applied it.
Kevin
> ---
> block/export/fuse.c | 8 ++++++--
> 1 file changed, 6 insertions(+), 2 deletions(-)
>
> diff --git a/block/export/fuse.c b/block/export/fuse.c
> index 6710d8aed86..d8bad0e53df 100644
> --- a/block/export/fuse.c
> +++ b/block/export/fuse.c
> @@ -625,6 +625,7 @@ static void fuse_fallocate(fuse_req_t req, fuse_ino_t inode, int mode,
> return;
> }
>
> +#ifdef CONFIG_FALLOCATE_PUNCH_HOLE
> if (mode & FALLOC_FL_KEEP_SIZE) {
> length = MIN(length, blk_len - offset);
> }
> @@ -643,8 +644,10 @@ static void fuse_fallocate(fuse_req_t req, fuse_ino_t inode, int mode,
> length -= size;
> } while (ret == 0 && length > 0);
> }
> + else
> +#endif /* CONFIG_FALLOCATE_PUNCH_HOLE */
> #ifdef CONFIG_FALLOCATE_ZERO_RANGE
> - else if (mode & FALLOC_FL_ZERO_RANGE) {
> + if (mode & FALLOC_FL_ZERO_RANGE) {
> if (!(mode & FALLOC_FL_KEEP_SIZE) && offset + length > blk_len) {
> /* No need for zeroes, we are going to write them ourselves */
> ret = fuse_do_truncate(exp, offset + length, false,
> @@ -664,8 +667,9 @@ static void fuse_fallocate(fuse_req_t req, fuse_ino_t inode, int mode,
> length -= size;
> } while (ret == 0 && length > 0);
> }
> + else
> #endif /* CONFIG_FALLOCATE_ZERO_RANGE */
> - else if (!mode) {
> + if (!mode) {
> /* We can only fallocate at the EOF with a truncate */
> if (offset < blk_len) {
> fuse_reply_err(req, EOPNOTSUPP);
> --
> 2.34.1
>
next prev parent reply other threads:[~2022-01-27 17:19 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-01-22 13:49 [RFC PATCH] block/export/fuse: Fix build failure on FreeBSD Philippe Mathieu-Daudé via
2022-01-27 16:15 ` Kevin Wolf [this message]
2022-02-01 11:14 ` Philippe Mathieu-Daudé via
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=YfLFLzOsqlzJUvNq@redhat.com \
--to=kwolf@redhat.com \
--cc=emaste@freebsd.org \
--cc=f4bug@amsat.org \
--cc=fontaine.fabrice@gmail.com \
--cc=hreitz@redhat.com \
--cc=kevans@freebsd.org \
--cc=lwhsu@freebsd.org \
--cc=qemu-block@nongnu.org \
--cc=qemu-devel@nongnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).