From: Peter Zijlstra <a.p.zijlstra@chello.nl>
To: Daniel Santos <daniel.santos@pobox.com>
Cc: Andrew Morton <akpm@linux-foundation.org>,
Christopher Li <sparse@chrisli.org>,
David Daney <david.daney@cavium.com>,
David Howells <dhowells@redhat.com>,
David Rientjes <rientjes@google.com>,
Hidetoshi Seto <seto.hidetoshi@jp.fujitsu.com>,
"H. Peter Anvin" <hpa@zytor.com>, Ingo Molnar <mingo@elte.hu>,
Ingo Molnar <mingo@kernel.org>, Joe Perches <joe@perches.com>,
Konstantin Khlebnikov <khlebnikov@openvz.org>,
linux-doc@vger.kernel.org, linux-sparse@vger.kernel.org,
LKML <linux-kernel@vger.kernel.org>,
Paul Gortmaker <paul.gortmaker@windriver.com>,
Paul Turner <pjt@google.com>, Pavel Pisa <pisa@cmp.felk.cvut.cz>,
Richard Weinberger <richard@nod.at>,
Rob Landley <rob@landley.net>,
Steven Rostedt <rostedt@goodmis.org>,
Suresh Siddha <suresh.b.siddha@intel.com>
Subject: Re: [PATCH v4 11/13] rbtree.h: Generic Red-Black Trees
Date: Wed, 27 Jun 2012 15:00:08 +0200 [thread overview]
Message-ID: <1340802008.10063.63.camel@twins> (raw)
In-Reply-To: <1340424048-7759-12-git-send-email-daniel.santos@pobox.com>
On Fri, 2012-06-22 at 23:00 -0500, Daniel Santos wrote:
> +typedef long (*rb_compare_f)(const void *a, const void *b);
> +struct rb_relationship {
> + ssize_t root_offset;
> + ssize_t left_offset;
> + ssize_t right_offset;
> + ssize_t count_offset;
> + ssize_t node_offset;
> + ssize_t key_offset;
> + int flags;
> + const rb_compare_f compare;
> + const rb_augment_f augment;
> +};
> +static __always_inline __flatten
> +struct rb_node *__rb_find(
> + struct rb_node *node,
> + const void *key,
> + const struct rb_relationship *rel)
> +{
> + __rb_assert_good_rel(rel);
> + while (node) {
> + long diff = rel->compare(key, __rb_node_to_key(node, rel));
> +
> + if (diff > 0)
> + node = node->rb_right;
> + else if (diff < 0)
> + node = node->rb_left;
> + else
> + return node;
> + }
> +
> + return 0;
> +}
> +#define RB_RELATIONSHIP( \
> + cont_type, root, left, right, count, \
> + obj_type, node, key, \
> + _flags, _compare, _augment) { \
> + .root_offset = offsetof(cont_type, root), \
> + .left_offset = OPT_OFFSETOF(cont_type, left), \
> + .right_offset = OPT_OFFSETOF(cont_type, right), \
> + .count_offset = OPT_OFFSETOF(cont_type, count), \
> + .node_offset = offsetof(obj_type, node), \
> + .key_offset = offsetof(obj_type, key), \
> + .flags = (_flags) \
> + | IFF_EMPTY(left , 0, RB_HAS_LEFTMOST) \
> + | IFF_EMPTY(right, 0, RB_HAS_RIGHTMOST) \
> + | IFF_EMPTY(count, 0, RB_HAS_COUNT) \
> + | IFF_EMPTY(_augment, 0, RB_IS_AUGMENTED), \
> + .compare = (const rb_compare_f) (_compare), \
> + .augment = IFF_EMPTY(_augment, 0, _augment) \
> +}
> +#define RB_DEFINE_INTERFACE( \
> + prefix, \
> + cont_type, root, left, right, count, \
> + obj_type, node, key, \
> + flags, compare, augment, \
> + find_mod, insert_mod, find_near_mod, insert_near_mod) \
> + \
> \
> +static const struct rb_relationship prefix ## _rel = \
> +RB_RELATIONSHIP( \
> + cont_type, root, left, right, count, \
> + obj_type, node, key, \
> + flags, compare, augment); \
> + \
> +IFF_EMPTY(find_mod, static __always_inline, find_mod) \
> +obj_type *prefix ## _find(cont_type *cont, \
> + const typeof(((obj_type *)0)->key) *_key) \
> +{ \
> + struct rb_node *ret = rb_find( \
> + &cont->root, _key, &prefix ## _rel); \
> + return ret ? rb_entry(ret, obj_type, node) : 0; \
> +} \
So the one thing I noticed was your 'fixed' long return type for
compare. I guess that's one of the things that inspired your CFS compare
'hack' since on 32bit that's too short.
I tried playing with typeof() and return types of function pointers, but
I couldn't make it work. Bummer. That leaves explicitly passing it to
the RB_DEFINE_INTERFACE() and pulling all relevant inline functions into
the macro as well.
next prev parent reply other threads:[~2012-06-27 13:00 UTC|newest]
Thread overview: 29+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-06-23 4:00 [PATCH v4 0/13] Generic Red-Black Trees Daniel Santos
2012-06-23 4:00 ` [PATCH v4 1/13] compiler-gcc4.h: Correct verion check for __compiletime_error Daniel Santos
2012-06-23 4:00 ` [PATCH v4 2/13] compiler-gcc4.h: Reorder macros based upon gcc ver Daniel Santos
2012-06-23 4:00 ` [PATCH v4 3/13] compiler-gcc.h: Add gcc-recommended GCC_VERSION macro Daniel Santos
2012-06-23 4:00 ` [PATCH v4 4/13] compiler-gcc{3,4}.h: Use " Daniel Santos
2012-06-23 4:00 ` [PATCH v4 5/13] compiler{,-gcc4}.h: Remove duplicate macros Daniel Santos
2012-06-23 4:00 ` [PATCH v4 6/13] bug.h: Replace __linktime_error with __compiletime_error Daniel Santos
2012-06-25 18:16 ` Paul Gortmaker
2012-06-25 18:16 ` Paul Gortmaker
2012-06-25 19:30 ` Daniel Santos
2012-06-23 4:00 ` [PATCH v4 7/13] compiler{,-gcc4}.h: Introduce __flatten function attribute Daniel Santos
2012-06-23 4:00 ` [PATCH v4 8/13] bug.h: Make BUILD_BUG_ON generate compile-time error Daniel Santos
2012-06-23 4:00 ` [PATCH v4 9/13] bug.h: Add BUILD_BUG_ON_NON_CONST macro Daniel Santos
2012-06-23 4:00 ` [PATCH v4 10/13] bug.h: Add gcc 4.2+ versions of BUILD_BUG_ON_* macros Daniel Santos
2012-06-23 4:00 ` [PATCH v4 11/13] rbtree.h: Generic Red-Black Trees Daniel Santos
2012-06-27 13:00 ` Peter Zijlstra [this message]
2012-06-23 4:00 ` [PATCH v4 12/13] fair.c: Use generic rbtree impl in fair scheduler Daniel Santos
2012-06-26 12:15 ` Peter Zijlstra
2012-06-26 21:59 ` Daniel Santos
2012-06-27 12:36 ` Peter Zijlstra
2012-06-23 4:00 ` [PATCH v4 13/13] documentation for rbtrees Daniel Santos
2012-06-23 23:01 ` [PATCH v4 0/13] Generic Red-Black Trees Rob Landley
2012-06-24 0:40 ` Daniel Santos
2012-06-24 4:39 ` Rob Landley
2012-06-24 7:57 ` Pavel Pisa
2012-06-24 23:29 ` Rob Landley
2012-06-25 8:35 ` Daniel Santos
2012-06-24 16:06 ` Alan Cox
2012-06-25 0:33 ` Daniel Santos
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1340802008.10063.63.camel@twins \
--to=a.p.zijlstra@chello.nl \
--cc=akpm@linux-foundation.org \
--cc=daniel.santos@pobox.com \
--cc=david.daney@cavium.com \
--cc=dhowells@redhat.com \
--cc=hpa@zytor.com \
--cc=joe@perches.com \
--cc=khlebnikov@openvz.org \
--cc=linux-doc@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-sparse@vger.kernel.org \
--cc=mingo@elte.hu \
--cc=mingo@kernel.org \
--cc=paul.gortmaker@windriver.com \
--cc=pisa@cmp.felk.cvut.cz \
--cc=pjt@google.com \
--cc=richard@nod.at \
--cc=rientjes@google.com \
--cc=rob@landley.net \
--cc=rostedt@goodmis.org \
--cc=seto.hidetoshi@jp.fujitsu.com \
--cc=sparse@chrisli.org \
--cc=suresh.b.siddha@intel.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.