dc68054305
- Restore 29 recipe symlinks (libdrm, qtbase, dbus, sddm, pipewire, etc.) - Restore 33 patches (KDE, libdrm, mesa, pipewire, sddm, wireplumber) - Restore 20+ local/scripts (audit, lint, test, build helpers) - Restore src/cook/scheduler.rs, status.rs, gnu-config/ - Restore scripts/patch-inclusion-gate.sh, run_mini1.sh, validate-collision-log.sh - Recover TLC source from HEAD (was overwritten by 0.2.3 checkout) - Recover 11 local/docs plans from HEAD (were overwritten) - Recover qt6-wayland-smoke symlink from HEAD - Fix MOTD: remove garbled ASCII art, use clean text - Update version: 0.2.0 -> 0.2.4 in os-release, motd, config - Reduce filesystem_size: 1536 -> 512 MiB - Add ABSOLUTE RULE to AGENTS.md: never delete/ignore packages - Reduce pcid scheme log verbosity: info -> debug
47 lines
1.3 KiB
C
47 lines
1.3 KiB
C
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
|
/* Count leading and trailing zeros functions
|
|
*
|
|
* Copyright (C) 2012 Red Hat, Inc. All Rights Reserved.
|
|
* Written by David Howells (dhowells@redhat.com)
|
|
*/
|
|
|
|
#ifndef _LINUX_BITOPS_COUNT_ZEROS_H_
|
|
#define _LINUX_BITOPS_COUNT_ZEROS_H_
|
|
|
|
#include <asm/bitops.h>
|
|
|
|
/**
|
|
* count_leading_zeros - Count the number of zeros from the MSB back
|
|
* @x: The value
|
|
*
|
|
* Count the number of leading zeros from the MSB going towards the LSB in @x.
|
|
*
|
|
* If the MSB of @x is set, the result is 0.
|
|
* If only the LSB of @x is set, then the result is BITS_PER_LONG-1.
|
|
* If @x is 0 then the result is BITS_PER_LONG.
|
|
*/
|
|
static inline int count_leading_zeros(unsigned long x)
|
|
{
|
|
if (sizeof(x) == 4)
|
|
return BITS_PER_LONG - fls(x);
|
|
else
|
|
return BITS_PER_LONG - fls64(x);
|
|
}
|
|
|
|
/**
|
|
* count_trailing_zeros - Count the number of zeros from the LSB forwards
|
|
* @x: The value
|
|
*
|
|
* Count the number of trailing zeros from the LSB going towards the MSB in @x.
|
|
*
|
|
* If the LSB of @x is set, the result is 0.
|
|
* If only the MSB of @x is set, then the result is BITS_PER_LONG-1.
|
|
* If @x is 0 then the result is BITS_PER_LONG.
|
|
*/
|
|
static inline int count_trailing_zeros(unsigned long x)
|
|
{
|
|
return x ? __ffs(x) : BITS_PER_LONG;
|
|
}
|
|
|
|
#endif /* _LINUX_BITOPS_COUNT_ZEROS_H_ */
|