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)
Sun, Jul 5, 4:41 AM
Unknown Object (File)
Fri, Jul 3, 5:59 PM
Unknown Object (File)
Fri, Jul 3, 6:37 AM
Unknown Object (File)
Jun 8 2026, 10:43 PM
Unknown Object (File)
May 28 2026, 12:38 AM
Unknown Object (File)
May 11 2026, 4:48 PM
Unknown Object (File)
May 11 2026, 2:47 PM
Unknown Object (File)
May 11 2026, 12:44 AM
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.