mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-05 16:54:27 +00:00

XZ_EXTERN was used to make internal functions static in the preboot code. However, in other decompressors this hasn't been done. On x86-64, this makes no difference to the kernel image size. Omit XZ_EXTERN and let some of the internal functions be extern in the preboot code. Omitting XZ_EXTERN from include/linux/xz.h fixes warnings in "make htmldocs" and makes the intradocument links to xz_dec functions work in Documentation/staging/xz.rst. The alternative would have been to add "XZ_EXTERN" to c_id_attributes in Documentation/conf.py but omitting XZ_EXTERN seemed cleaner. Link: https://lore.kernel.org/lkml/20240723205437.3c0664b0@kaneli/ Link: https://lkml.kernel.org/r/20240724110544.16430-1-lasse.collin@tukaani.org Signed-off-by: Lasse Collin <lasse.collin@tukaani.org> Tested-by: Michael Ellerman <mpe@ellerman.id.au> (powerpc) Cc: Jonathan Corbet <corbet@lwn.net> Cc: Sam James <sam@gentoo.org> Cc: Albert Ou <aou@eecs.berkeley.edu> Cc: Catalin Marinas <catalin.marinas@arm.com> Cc: Emil Renner Berthing <emil.renner.berthing@canonical.com> Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org> Cc: Herbert Xu <herbert@gondor.apana.org.au> Cc: Joel Stanley <joel@jms.id.au> Cc: Jubin Zhong <zhongjubin@huawei.com> Cc: Jules Maselbas <jmaselbas@zdiv.net> Cc: Krzysztof Kozlowski <krzk@kernel.org> Cc: Palmer Dabbelt <palmer@dabbelt.com> Cc: Paul Walmsley <paul.walmsley@sifive.com> Cc: Randy Dunlap <rdunlap@infradead.org> Cc: Rui Li <me@lirui.org> Cc: Simon Glass <sjg@chromium.org> Cc: Thomas Gleixner <tglx@linutronix.de> Cc: Will Deacon <will@kernel.org> Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
57 lines
1.2 KiB
C
57 lines
1.2 KiB
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
#ifndef __XZ_CONFIG_H__
|
|
#define __XZ_CONFIG_H__
|
|
|
|
/*
|
|
* most of this is copied from lib/xz/xz_private.h, we can't use their defines
|
|
* since the boot wrapper is not built in the same environment as the rest of
|
|
* the kernel.
|
|
*/
|
|
|
|
#include "types.h"
|
|
#include "swab.h"
|
|
|
|
static inline uint32_t swab32p(void *p)
|
|
{
|
|
uint32_t *q = p;
|
|
|
|
return swab32(*q);
|
|
}
|
|
|
|
#ifdef __LITTLE_ENDIAN__
|
|
#define get_le32(p) (*((uint32_t *) (p)))
|
|
#define cpu_to_be32(x) swab32(x)
|
|
static inline u32 be32_to_cpup(const u32 *p)
|
|
{
|
|
return swab32p((u32 *)p);
|
|
}
|
|
#else
|
|
#define get_le32(p) swab32p(p)
|
|
#define cpu_to_be32(x) (x)
|
|
static inline u32 be32_to_cpup(const u32 *p)
|
|
{
|
|
return *p;
|
|
}
|
|
#endif
|
|
|
|
static inline uint32_t get_unaligned_be32(const void *p)
|
|
{
|
|
return be32_to_cpup(p);
|
|
}
|
|
|
|
static inline void put_unaligned_be32(u32 val, void *p)
|
|
{
|
|
*((u32 *)p) = cpu_to_be32(val);
|
|
}
|
|
|
|
#define memeq(a, b, size) (memcmp(a, b, size) == 0)
|
|
#define memzero(buf, size) memset(buf, 0, size)
|
|
|
|
/* prevent the inclusion of the xz-preboot MM headers */
|
|
#define DECOMPR_MM_H
|
|
#define memmove memmove
|
|
|
|
/* xz.h needs to be included directly since we need enum xz_mode */
|
|
#include "../../../include/linux/xz.h"
|
|
|
|
#endif
|