[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20120806102114.GA31404@elf.ucw.cz>
Date: Mon, 6 Aug 2012 12:21:14 +0200
From: Pavel Machek <pavel@....cz>
To: Len Brown <lenb@...nel.org>
Cc: Alan Stern <stern@...land.harvard.edu>, linux-acpi@...r.kernel.org,
linux-pm@...ts.linux-foundation.org, linux-kernel@...r.kernel.org,
Len Brown <len.brown@...el.com>,
Pavel Vasilyev <pavel@...linux.ru>
Subject: Re: [linux-pm] [PATCH] ACPI: replace strlen("string") with
sizeof("string") -1
On Thu 2012-07-26 21:39:38, Len Brown wrote:
> ...both give the number of chars in the string
> without the '\0', as strncmp() wants,
> but sizeof() is compile-time.
What about introducing something like streq() to do this
automatically? This is ugly....
#define streq(a, b) ... if (_buildin_constant(b)) ...
?
> - if (!strncmp(val, "enable", strlen("enable"))) {
> + if (!strncmp(val, "enable", sizeof("enable") - 1)) {
Pavel
--
(english) http://www.livejournal.com/~pavelmachek
(cesky, pictures) http://atrey.karlin.mff.cuni.cz/~pavel/picture/horses/blog.html
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists