/* SPDX-License-Identifier: GPL-2.0+ */1#ifndef __MAPLE_SHARED_H__2#define __MAPLE_SHARED_H__34#define CONFIG_DEBUG_MAPLE_TREE5#define CONFIG_MAPLE_SEARCH6#define MAPLE_32BIT (MAPLE_NODE_SLOTS > 31)7#include "shared.h"8#include <stdlib.h>9#include <time.h>10#include "linux/init.h"1112void maple_rcu_cb(struct rcu_head *head);13#define rcu_cb maple_rcu_cb1415#define kfree_rcu(_struct, _memb) \16do { \17typeof(_struct) _p_struct = (_struct); \18\19call_rcu(&((_p_struct)->_memb), rcu_cb); \20} while(0);212223#endif /* __MAPLE_SHARED_H__ */242526