From 1b86fe4c4de96daa4e766425193595f1c6b88a73 Mon Sep 17 00:00:00 2001 From: Bernd Schubert Date: Tue, 11 Mar 2025 22:21:09 +0100 Subject: fuse_lowlevel: Simplify se->buf_reallocable se->buf_reallocable is true when reading /dev/fuse is handled from internal functions - we can set the variable in fuse_session_receive_buf_internal(). With that we also don't need to have it an _Atomic variable anymore. In _fuse_session_receive_buf() we can use "bool internal" to check if the buffer can be re-allocated. Signed-off-by: Bernd Schubert --- lib/util.h | 3 +++ 1 file changed, 3 insertions(+) (limited to 'lib/util.h') diff --git a/lib/util.h b/lib/util.h index 74ce748..a5c5463 100644 --- a/lib/util.h +++ b/lib/util.h @@ -1,3 +1,6 @@ #define ROUND_UP(val, round_to) (((val) + (round_to - 1)) & ~(round_to - 1)) +#define likely(x) __builtin_expect(!!(x), 1) +#define unlikely(x) __builtin_expect(!!(x), 0) + int libfuse_strtol(const char *str, long *res); -- cgit v1.2.3