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
F144369275: D27240.id79610.diff
Sun, Feb 8, 2:22 AM
F144364846: D27240.id79666.diff
Sun, Feb 8, 1:44 AM
Unknown Object (File)
Fri, Jan 30, 6:14 PM
Unknown Object (File)
Dec 24 2025, 6:42 AM
Unknown Object (File)
Dec 13 2025, 4:25 PM
Unknown Object (File)
Dec 12 2025, 4:46 AM
Unknown Object (File)
Nov 27 2025, 10:46 PM
Unknown Object (File)
Nov 11 2025, 6:20 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.