From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on gnuweeb.org X-Spam-Level: X-Spam-Status: No, score=-0.8 required=5.0 tests=ALL_TRUSTED,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,NO_DNS_FOR_FROM,URIBL_BLOCKED autolearn=no autolearn_force=no version=3.4.6 Received: from integral2.. (unknown [182.2.69.158]) by gnuweeb.org (Postfix) with ESMTPSA id 1429F7E337; Tue, 22 Mar 2022 10:21:49 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=gnuweeb.org; s=default; t=1647944513; bh=V1krABsPZ17e1z+Qe7nb1l0Lb2juQEQNEq83Qg0iKqs=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=LJuHOmOqi1WzLHHHhvu29FB/FfiPGXUMvTUoErRz0j0xu96Cvn5Yvo2jbaSRZNC2+ lfBlsRCX9XFZ5I2OKIOyLI4JQuA5npVpMDer1KMVSo0JEJbv+4/pnjLIjLO9FqjCKd Rn0SPSB1l74gWhNkklRbuWxPxhRutHwuqGSH9MhnoLiZTSsDy/FLQXkWA0Furalszx QcAi/ppH+J4uV5oM4L6wFfDA6BXJdv6omCDDP1IEMcp7EF9kmSi7LrOrtgQiyzs7cn VuHexLNTbrpXN8g6PdWVHq/mb9AXindGVAhfias0G8JxHHD0YdqQYHsv8ERcdCcR57 uAncV4TQvTN4w== From: Ammar Faizi To: Willy Tarreau Cc: "Paul E. McKenney" , Alviro Iskandar Setiawan , Nugraha , Linux Kernel Mailing List , GNU/Weeb Mailing List , Ammar Faizi Subject: [RFC PATCH v2 5/8] tools/nolibc/types: Implement `offsetof()` and `container_of()` macro Date: Tue, 22 Mar 2022 17:21:12 +0700 Message-Id: <20220322102115.186179-6-ammarfaizi2@gnuweeb.org> X-Mailer: git-send-email 2.32.0 In-Reply-To: <20220322102115.186179-1-ammarfaizi2@gnuweeb.org> References: <20220322102115.186179-1-ammarfaizi2@gnuweeb.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit List-Id: Implement `offsetof()` and `container_of()` macro. The first use case of these macros is for `malloc()`, `realloc()` and `free()`. Signed-off-by: Ammar Faizi --- tools/include/nolibc/types.h | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/tools/include/nolibc/types.h b/tools/include/nolibc/types.h index 357e60ad38a8..959997034e55 100644 --- a/tools/include/nolibc/types.h +++ b/tools/include/nolibc/types.h @@ -191,4 +191,15 @@ struct stat { #define major(dev) ((unsigned int)(((dev) >> 8) & 0xfff)) #define minor(dev) ((unsigned int)(((dev) & 0xff)) +#ifndef offsetof +#define offsetof(TYPE, FIELD) ((size_t) &((TYPE *)0)->FIELD) +#endif + +#ifndef container_of +#define container_of(PTR, TYPE, FIELD) ({ \ + __typeof__(((TYPE *)0)->FIELD) *__FIELD_PTR = (PTR); \ + (TYPE *)((char *) __FIELD_PTR - offsetof(TYPE, FIELD)); \ +}) +#endif + #endif /* _NOLIBC_TYPES_H */ -- Ammar Faizi