Page MenuHomeFreeBSD

[zfs] Fix LZ4 function definitions to not trip up the compile
ClosedPublic

Authored by adrian on Nov 16 2020, 4:43 PM.
Tags
None
Referenced Files
Unknown Object (File)
Tue, Nov 11, 6:20 AM
Unknown Object (File)
Mon, Nov 10, 6:36 AM
Unknown Object (File)
Thu, Nov 6, 4:07 AM
Unknown Object (File)
Wed, Oct 29, 3:41 PM
Unknown Object (File)
Wed, Oct 29, 3:17 PM
Unknown Object (File)
Wed, Oct 29, 3:01 PM
Unknown Object (File)
Wed, Oct 29, 2:59 PM
Unknown Object (File)
Wed, Oct 29, 2:59 PM
Subscribers

Details

Summary

This is today (Nov 16 2020) head amd64; llvm tripped up in compiling
userland by noting that lz4_init/lz4_fini were lacking in being previously
defined.

So, just remove the extern and add it to lz4. So far so good.

Test Plan
  • compiled userland/kernel on amd64

Diff Detail

Repository
rS FreeBSD src repository - subversion
Lint
Lint Not Applicable
Unit
Tests Not Applicable

Event Timeline

This revision is now accepted and ready to land.Nov 16 2020, 5:15 PM
brooks added a subscriber: brooks.

How did this work for anyone? I tripped on it in CheriBSD on aarch64 just now (this is with llvm ~11.0.0).

How did this work for anyone? I tripped on it in CheriBSD on aarch64 just now (this is with llvm ~11.0.0).

What was the exact error message? I never got that, and it always compiled just fine for me...

Apparently for me, _FAKE_KERNEL just never gets defined, so that part of the code never gets compiled. I have no idea where that define comes from. In the preprocessed lz4.i I simply do not see the offending code fragment at all.

In D27240#608670, @dim wrote:

Apparently for me, _FAKE_KERNEL just never gets defined, so that part of the code never gets compiled. I have no idea where that define comes from. In the preprocessed lz4.i I simply do not see the offending code fragment at all.

I'm guessing it's a bit like our _STANDALONE environment, but that's less well defined in the upstream code.