All of lore.kernel.org
 help / color / mirror / Atom feed
From: David Laight <david.laight.linux@gmail.com>
To: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Cc: Dmitry Antipov <dmantipov@yandex.ru>,
	Petr Mladek <pmladek@suse.com>,
	linux-kernel@vger.kernel.org,
	Andrew Morton <akpm@linux-foundation.org>,
	Steven Rostedt <rostedt@goodmis.org>,
	Rasmus Villemoes <linux@rasmusvillemoes.dk>,
	Sergey Senozhatsky <senozhatsky@chromium.org>,
	rodrigo.alencar@analog.com, dlechner@baylibre.com,
	jic23@kernel.org
Subject: Re: [PATCH v1 1/2] kstrtox: Make _parse_integer() take variadic arguments
Date: Wed, 3 Jun 2026 12:34:03 +0100	[thread overview]
Message-ID: <20260603123403.75cd52ca@pumpkin> (raw)
In-Reply-To: <aiAIWI4-4yR3GFaF@ashevche-desk.local>

On Wed, 3 Jun 2026 13:56:24 +0300
Andy Shevchenko <andriy.shevchenko@linux.intel.com> wrote:

> On Wed, Jun 03, 2026 at 01:54:43PM +0300, Andy Shevchenko wrote:
> > On Wed, Jun 03, 2026 at 11:37:50AM +0100, David Laight wrote:  
> > > On Tue,  2 Jun 2026 22:29:46 +0200
> > > Andy Shevchenko <andriy.shevchenko@linux.intel.com> wrote:  
> 
> > > > Instead of having different functions that just use default parameters,
> > > > combine those to use variadic arguments, so the user may call it using
> > > > the same name.  
> > > 
> > > Adding a default final parameter can be done generically:  
> > 
> > Only one?
> >   
> > > #define one(v) v
> > > #define first(v, ...) v
> > > #define dflt(d, ...) first(__VA_OPT__(one(__VA_ARGS__) ,) d)
> > > 
> > > int foo(int, int);
> > > #define foo(a, ...) foo(a, dflt(42, ## __VA_ARGS__))
> > > 
> > > See: https://godbolt.org/z/x5aao7reK  
> > 
> > I know, we support some GCC versions that do not provide it.
> > 
> > 551d44200152 ("default_gfp(): avoid using the "newfangled" __VA_OPT__ trick")  
> 
> I stand corrected, it's all about sparse. Since this is the generic header,
> I would also avoid using VA_OPT even if it allows more than one optional
> argument.

I'm not sure multiple optional arguments are overly useful.
Starts getting difficult knowing what they are for.

Really the C standard should have added named parameters ages ago.
Perhaps as:
	int f(int a, int b, int c = 0);
then:
	x = f(b:17, a:42);
then you could have default values for any parameters.
Would also be less error prone for functions with lots of flag parameters.

For sparse it only has to expand to valid C.
So how about something like the following for sparse builds?

#define dlft(d, ...) (one(__VA_ARGS__) + 0 ?: (d))

-- David


  reply	other threads:[~2026-06-03 11:34 UTC|newest]

Thread overview: 16+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-06-02 20:29 [PATCH v1 0/2] kstrtox: make _parse_integer() flexible Andy Shevchenko
2026-06-02 20:29 ` [PATCH v1 1/2] kstrtox: Make _parse_integer() take variadic arguments Andy Shevchenko
2026-06-03  6:47   ` Andy Shevchenko
2026-06-03 10:37   ` David Laight
2026-06-03 10:54     ` Andy Shevchenko
2026-06-03 10:56       ` Andy Shevchenko
2026-06-03 11:34         ` David Laight [this message]
2026-06-02 20:29 ` [PATCH v1 2/2] vsprintf: Convert to use _parse_integer() instead of _parse_integer_limit() Andy Shevchenko
2026-06-03 11:23 ` [PATCH v1 0/2] kstrtox: make _parse_integer() flexible Petr Mladek
2026-06-03 11:51   ` Rodrigo Alencar
2026-06-03 12:10     ` Rodrigo Alencar
2026-06-03 13:58       ` Andy Shevchenko
2026-06-03 13:53     ` Andy Shevchenko
2026-06-04  6:59       ` Petr Mladek
2026-06-04  7:19         ` Andy Shevchenko
2026-06-04  7:48           ` Rodrigo Alencar

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=20260603123403.75cd52ca@pumpkin \
    --to=david.laight.linux@gmail.com \
    --cc=akpm@linux-foundation.org \
    --cc=andriy.shevchenko@linux.intel.com \
    --cc=dlechner@baylibre.com \
    --cc=dmantipov@yandex.ru \
    --cc=jic23@kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux@rasmusvillemoes.dk \
    --cc=pmladek@suse.com \
    --cc=rodrigo.alencar@analog.com \
    --cc=rostedt@goodmis.org \
    --cc=senozhatsky@chromium.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 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.