Re: svn commit: r325320 - head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs [breaks lld on zfs: lld uses fallocate]

From: Mark Millard <markmi_at_dsl-only.net>
Date: Sat, 4 Nov 2017 12:46:03 -0700
[The patch allowed the amd64 -> aarch64 cross-buildworld
to complete instead of failing in lld.]

On 2017-Nov-4, at 10:13 AM, Mark Millard <markmi at dsl-only.net> wrote:

> On 2017-Nov-4, at 10:02 AM, Mark Millard <markmi at dsl-only.net> wrote:
> 
> 
>> On 2017-Nov-4, at 4:58 AM, Ed Maste <emaste at freebsd.org> wrote:
>> 
>>> On 4 November 2017 at 07:41, Andriy Gapon <avg at freebsd.org> wrote:
>>>> On 04/11/2017 12:32, Mark Millard wrote:
>>>>> if (int Err = ::posix_fallocate(FD, 0, Size)) {
>>>>>  if (Err != EOPNOTSUPP)
>>>>>    return std::error_code(Err, std::generic_category());
>>>>> }
>>>> 
>>>> The commit message that you didn't include into your reply contains some useful
>>>> information that authors / maintainers of this code should probably take into
>>>> account:
>>>> 
>>>>> Please note that EINVAL is used to report that the underlying file system
>>>>> does not support the operation (POSIX.1-2008).
>>>> 
>>>> Here is a link for that:
>>>> http://pubs.opengroup.org/onlinepubs/9699919799/functions/posix_fallocate.html
>>> 
>>> I have no idea how they decided EINVAL was a reasonable errno for this case.
>>> 
>>> Mark, can you give this patch a try:
>>> 
>>> diff --git a/contrib/llvm/lib/Support/Unix/Path.inc
>>> b/contrib/llvm/lib/Support/Unix/Path.inc
>>> index 45097eb918b7..67edb46f0025 100644
>>> --- a/contrib/llvm/lib/Support/Unix/Path.inc
>>> +++ b/contrib/llvm/lib/Support/Unix/Path.inc
>>> _at__at_ -427,7 +427,7 _at__at_ std::error_code resize_file(int FD, uint64_t Size) {
>>> // If we have posix_fallocate use it. Unlike ftruncate it always allocates
>>> // space, so we get an error if the disk is full.
>>> if (int Err = ::posix_fallocate(FD, 0, Size)) {
>>> -    if (Err != EOPNOTSUPP)
>>> +    if (Err != EINVAL && Err != EOPNOTSUPP)
>>>     return std::error_code(Err, std::generic_category());

This change allowed the amd64 -> aarch64 cross-buildworld
(and buildkernel) to finish.

Thanks.


===
Mark Millard
markmi at dsl-only.net
Received on Sat Nov 04 2017 - 18:46:12 UTC

This archive was generated by hypermail 2.4.0 : Wed May 19 2021 - 11:41:13 UTC