From: William Roche <william.roche@oracle.com>
To: David Hildenbrand <david@redhat.com>,
peterx@redhat.com, qemu-devel@nongnu.org, pbonzini@redhat.com,
philmd@linaro.org
Subject: Re: [PATCH v2 1/1] system/physmem: take into account fd_offset for file fallocate
Date: Wed, 22 Jan 2025 20:39:33 +0100 [thread overview]
Message-ID: <a1bebaa5-a6ad-42d6-b16e-653deb3c358e@oracle.com> (raw)
In-Reply-To: <4f40dace-0f06-4e15-9cf1-d191621d080f@redhat.com>
On 1/22/25 09:01, David Hildenbrand wrote:
> On 21.01.25 23:54, “William Roche wrote:
>> From: William Roche <william.roche@oracle.com>
>> [...]
>> --- a/system/physmem.c
>> +++ b/system/physmem.c
>> @@ -3655,6 +3655,7 @@ int ram_block_discard_range(RAMBlock *rb,
>> uint64_t start, size_t length)
>> need_madvise = (rb->page_size == qemu_real_host_page_size());
>> need_fallocate = rb->fd != -1;
>> if (need_fallocate) {
>> + uint64_t file_offset = start + rb->fd_offset;
>
> Taking another closer look ...
>
> Could likely be "off_t".
Right.
>> /* For a file, this causes the area of the file to be
>> zero'd
>> * if read, and for hugetlbfs also causes it to be unmapped
>> * so a userfault will trigger.
>> @@ -3689,18 +3690,18 @@ int ram_block_discard_range(RAMBlock *rb,
>> uint64_t start, size_t length)
>> }
>> ret = fallocate(rb->fd, FALLOC_FL_PUNCH_HOLE | FALLOC_FL_KEEP_SIZE,
>> - start, length);
>> + file_offset, length);
>> if (ret) {
>> ret = -errno;
>> error_report("%s: Failed to fallocate %s:%" PRIx64 " +%zx (%d)",
>> - __func__, rb->idstr, start, length, ret);
>> + __func__, rb->idstr, file_offset, length, ret);
>> goto err;
>> }
>> #else
>> ret = -ENOSYS;
>> error_report("%s: fallocate not available/file"
>> "%s:%" PRIx64 " +%zx (%d)",
>> - __func__, rb->idstr, start, length, ret);
>> + __func__, rb->idstr, file_offset, length, ret);
>> goto err;
>> #endif
>
> Thinking again, both error_report() should likely not have the offset
> replaced?
>
> We are printing essentially the parameters to ram_block_discard_range()
> -- range in the ramblock -- just like in the "Failed to discard range"
> range.
>
> So maybe just leave it like is or print the file offset additionally?
> (which might only make sense in the "Failed to fallocate" case).
I understand that the start value may be clearer to read than the global
file_offset. So I'm slightly modifying the error message to show
<start>+<fd_offset> (without space) which would usually be <start>+0
For example:
ram_block_discard_range: Failed to fallocate ram-node1:f2db000+0 +1000
(-5)
instead of:
ram_block_discard_range: Failed to fallocate ram-node1:f2db000 +1000 (-5)
The length notation isn't changing, coming afterwards with a space -- so
that it continues to match all the other similar range error messages in
system/physmem.c.
I also align the "fallocate not available/file" message to show the
extra +<fd_offset> after the <start>.
I'm sending a v3 version now.
William.
prev parent reply other threads:[~2025-01-22 19:40 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-01-21 22:54 [PATCH v2 0/1] fallocate missing fd_offset “William Roche
2025-01-21 22:54 ` [PATCH v2 1/1] system/physmem: take into account fd_offset for file fallocate “William Roche
2025-01-22 8:01 ` David Hildenbrand
2025-01-22 19:39 ` William Roche [this message]
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=a1bebaa5-a6ad-42d6-b16e-653deb3c358e@oracle.com \
--to=william.roche@oracle.com \
--cc=david@redhat.com \
--cc=pbonzini@redhat.com \
--cc=peterx@redhat.com \
--cc=philmd@linaro.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).