mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: Randy Dunlap <randy.dunlap@oracle.com>
To: Harvey Harrison <harvey.harrison@gmail.com>
Cc: Andrew Morton <akpm@linux-foundation.org>,
	LKML <linux-kernel@vger.kernel.org>
Subject: Re: [PATCH] add kerneldoc for clamp(), clamp_t(), clamp_val() macros
Date: Fri, 14 Mar 2008 13:03:06 -0700	[thread overview]
Message-ID: <20080314130306.4b134b3b.randy.dunlap@oracle.com> (raw)
In-Reply-To: <1205524734.27712.7.camel@brick>

On Fri, 14 Mar 2008 12:58:49 -0700 Harvey Harrison wrote:

> Signed-off-by: Harvey Harrison <harvey.harrison@gmail.com>

Acked-by: Randy Dunlap <randy.dunlap@oracle.com>

Thanks, Harvey.

> ---
>  include/linux/kernel.h |   30 ++++++++++++++++++++++++++++++
>  1 files changed, 30 insertions(+), 0 deletions(-)
> 
> diff --git a/include/linux/kernel.h b/include/linux/kernel.h
> index c74460c..d57e537 100644
> --- a/include/linux/kernel.h
> +++ b/include/linux/kernel.h
> @@ -351,6 +351,15 @@ static inline int __attribute__ ((format (printf, 1, 2))) pr_debug(const char *
>  	(void) (&_max1 == &_max2);		\
>  	_max1 > _max2 ? _max1 : _max2; })
>  
> +/**
> + * clamp - return a value clamped to a given range with strict typechecking
> + * @val: current value
> + * @min: minimum allowable value
> + * @max: maximum allowable value
> + *
> + * This macro does strict typechecking of min/max to make sure they are of the
> + * same type as val.  See the unnecessary pointer comparisons.
> + */
>  #define clamp(val, min, max) ({			\
>  	typeof(val) __val = (val);		\
>  	typeof(min) __min = (min);		\
> @@ -376,6 +385,16 @@ static inline int __attribute__ ((format (printf, 1, 2))) pr_debug(const char *
>  	type __max2 = (y);			\
>  	__max1 > __max2 ? __max1: __max2; })
>  
> +/**
> + * clamp_t - return a value clamped to a given range using a given type
> + * @type: the type of variable to use
> + * @val: current value
> + * @min: minimum allowable value
> + * @max: maximum allowable value
> + *
> + * This macro does no typechecking and uses temporary variables of type
> + * 'type' to make all the comparisons.
> + */
>  #define clamp_t(type, val, min, max) ({		\
>  	type __val = (val);			\
>  	type __min = (min);			\
> @@ -383,6 +402,17 @@ static inline int __attribute__ ((format (printf, 1, 2))) pr_debug(const char *
>  	__val = __val < __min ? __min: __val;	\
>  	__val > __max ? __max: __val; })
>  
> +/**
> + * clamp_val - return a value clamped to a given range using val's type
> + * @val: current value
> + * @min: minimum allowable value
> + * @max: maximum allowable value
> + *
> + * This macro does no typechecking and uses temporary variables of whatever
> + * type the input argument 'val' is.  This is useful when val is an unsigned
> + * type and min and max are literals that will otherwise be assigned a signed
> + * integer type.
> + */
>  #define clamp_val(val, min, max) ({		\
>  	typeof(val) __val = (val);		\
>  	typeof(val) __min = (min);		\
> -- 

---
~Randy

      reply	other threads:[~2008-03-14 20:04 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2008-03-14 19:58 Harvey Harrison
2008-03-14 20:03 ` Randy Dunlap [this message]

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=20080314130306.4b134b3b.randy.dunlap@oracle.com \
    --to=randy.dunlap@oracle.com \
    --cc=akpm@linux-foundation.org \
    --cc=harvey.harrison@gmail.com \
    --cc=linux-kernel@vger.kernel.org \
    /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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®