* [PATCH 05/15] drivers: input: Drop unlikely before IS_ERR(_OR_NULL)
[not found] <cover.1438331416.git.viresh.kumar@linaro.org>
@ 2015-07-31 8:38 ` Viresh Kumar
2015-07-31 16:58 ` Dmitry Torokhov
0 siblings, 1 reply; 6+ messages in thread
From: Viresh Kumar @ 2015-07-31 8:38 UTC (permalink / raw)
To: akpm
Cc: linaro-kernel, linux-kernel, Viresh Kumar, Dmitry Torokhov,
Hans de Goede,
open list:INPUT KEYBOARD, MOUSE, JOYSTICK , TOUCHSCREEN...,
Masaki Ota, Pali Rohár
IS_ERR(_OR_NULL) already contain an 'unlikely' compiler flag and there
is no need to do that again from its callers. Drop it.
Signed-off-by: Viresh Kumar <viresh.kumar@linaro.org>
---
drivers/input/mouse/alps.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/input/mouse/alps.c b/drivers/input/mouse/alps.c
index 113d6f1516a5..cef3611a4ccd 100644
--- a/drivers/input/mouse/alps.c
+++ b/drivers/input/mouse/alps.c
@@ -1365,7 +1365,7 @@ static void alps_report_bare_ps2_packet(struct psmouse *psmouse,
/* On V2 devices the DualPoint Stick reports bare packets */
dev = priv->dev2;
dev2 = psmouse->dev;
- } else if (unlikely(IS_ERR_OR_NULL(priv->dev3))) {
+ } else if (IS_ERR_OR_NULL(priv->dev3)) {
/* Register dev3 mouse if we received PS/2 packet first time */
if (!IS_ERR(priv->dev3))
psmouse_queue_work(psmouse, &priv->dev3_register_work,
--
2.4.0
^ permalink raw reply related [flat|nested] 6+ messages in thread
* Re: [PATCH 05/15] drivers: input: Drop unlikely before IS_ERR(_OR_NULL)
2015-07-31 8:38 ` [PATCH 05/15] drivers: input: Drop unlikely before IS_ERR(_OR_NULL) Viresh Kumar
@ 2015-07-31 16:58 ` Dmitry Torokhov
2015-08-01 11:22 ` Viresh Kumar
0 siblings, 1 reply; 6+ messages in thread
From: Dmitry Torokhov @ 2015-07-31 16:58 UTC (permalink / raw)
To: Viresh Kumar
Cc: akpm, linaro-kernel, linux-kernel, Hans de Goede,
open list:INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN)...,
Masaki Ota, Pali Rohár
On Fri, Jul 31, 2015 at 02:08:25PM +0530, Viresh Kumar wrote:
> IS_ERR(_OR_NULL) already contain an 'unlikely' compiler flag and there
> is no need to do that again from its callers. Drop it.
I'd rather keep it as it documents the expected behavior and double
unlikely should work just fine.
>
> Signed-off-by: Viresh Kumar <viresh.kumar@linaro.org>
> ---
> drivers/input/mouse/alps.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/input/mouse/alps.c b/drivers/input/mouse/alps.c
> index 113d6f1516a5..cef3611a4ccd 100644
> --- a/drivers/input/mouse/alps.c
> +++ b/drivers/input/mouse/alps.c
> @@ -1365,7 +1365,7 @@ static void alps_report_bare_ps2_packet(struct psmouse *psmouse,
> /* On V2 devices the DualPoint Stick reports bare packets */
> dev = priv->dev2;
> dev2 = psmouse->dev;
> - } else if (unlikely(IS_ERR_OR_NULL(priv->dev3))) {
> + } else if (IS_ERR_OR_NULL(priv->dev3)) {
> /* Register dev3 mouse if we received PS/2 packet first time */
> if (!IS_ERR(priv->dev3))
> psmouse_queue_work(psmouse, &priv->dev3_register_work,
> --
> 2.4.0
>
Thanks.
--
Dmitry
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH 05/15] drivers: input: Drop unlikely before IS_ERR(_OR_NULL)
2015-07-31 16:58 ` Dmitry Torokhov
@ 2015-08-01 11:22 ` Viresh Kumar
2015-08-01 11:44 ` Pali Rohár
0 siblings, 1 reply; 6+ messages in thread
From: Viresh Kumar @ 2015-08-01 11:22 UTC (permalink / raw)
To: Dmitry Torokhov
Cc: akpm, linaro-kernel, linux-kernel, Hans de Goede,
open list:INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN)...,
Masaki Ota, Pali Rohár
On 31-07-15, 09:58, Dmitry Torokhov wrote:
> On Fri, Jul 31, 2015 at 02:08:25PM +0530, Viresh Kumar wrote:
> > IS_ERR(_OR_NULL) already contain an 'unlikely' compiler flag and there
> > is no need to do that again from its callers. Drop it.
>
> I'd rather keep it as it documents the expected behavior and double
> unlikely should work just fine.
TBH, I don't really agree that it is there for documentation. The only purpose
of such compiler flags is to try make code more efficient.
Anyway, I got to this series as someone asked me to fix this for one of my
patches which used unlikely(IS_ERR_OR_NULL()). And so I thought about fixing all
sites that are doing double unlikely (that shouldn't hurt for sure).
I will leave it to you.
--
viresh
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH 05/15] drivers: input: Drop unlikely before IS_ERR(_OR_NULL)
2015-08-01 11:22 ` Viresh Kumar
@ 2015-08-01 11:44 ` Pali Rohár
2015-08-02 15:43 ` Pavel Machek
0 siblings, 1 reply; 6+ messages in thread
From: Pali Rohár @ 2015-08-01 11:44 UTC (permalink / raw)
To: Viresh Kumar, Dmitry Torokhov
Cc: akpm, linaro-kernel, linux-kernel, Hans de Goede,
open list:INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN)...,
Masaki Ota
[-- Attachment #1: Type: Text/Plain, Size: 1107 bytes --]
On Saturday 01 August 2015 13:22:51 Viresh Kumar wrote:
> On 31-07-15, 09:58, Dmitry Torokhov wrote:
> > On Fri, Jul 31, 2015 at 02:08:25PM +0530, Viresh Kumar wrote:
> > > IS_ERR(_OR_NULL) already contain an 'unlikely' compiler flag and
> > > there is no need to do that again from its callers. Drop it.
> >
> > I'd rather keep it as it documents the expected behavior and double
> > unlikely should work just fine.
>
> TBH, I don't really agree that it is there for documentation. The
> only purpose of such compiler flags is to try make code more
> efficient.
>
> Anyway, I got to this series as someone asked me to fix this for one
> of my patches which used unlikely(IS_ERR_OR_NULL()). And so I
> thought about fixing all sites that are doing double unlikely (that
> shouldn't hurt for sure).
>
> I will leave it to you.
I think that unlikely() macro here make code more readable. Yes, it is
also for compiler optimization, but also for me it looks like Clean Code
pattern <https://de.wikipedia.org/wiki/Clean_Code> -- is not it?
--
Pali Rohár
pali.rohar@gmail.com
[-- Attachment #2: This is a digitally signed message part. --]
[-- Type: application/pgp-signature, Size: 198 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH 05/15] drivers: input: Drop unlikely before IS_ERR(_OR_NULL)
2015-08-01 11:44 ` Pali Rohár
@ 2015-08-02 15:43 ` Pavel Machek
2015-08-02 15:59 ` Pali Rohár
0 siblings, 1 reply; 6+ messages in thread
From: Pavel Machek @ 2015-08-02 15:43 UTC (permalink / raw)
To: Pali Rohár
Cc: Viresh Kumar, Dmitry Torokhov, akpm, linaro-kernel, linux-kernel,
Hans de Goede,
open list:INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN)...,
Masaki Ota
On Sat 2015-08-01 13:44:59, Pali Rohár wrote:
> On Saturday 01 August 2015 13:22:51 Viresh Kumar wrote:
> > On 31-07-15, 09:58, Dmitry Torokhov wrote:
> > > On Fri, Jul 31, 2015 at 02:08:25PM +0530, Viresh Kumar wrote:
> > > > IS_ERR(_OR_NULL) already contain an 'unlikely' compiler flag and
> > > > there is no need to do that again from its callers. Drop it.
> > >
> > > I'd rather keep it as it documents the expected behavior and double
> > > unlikely should work just fine.
> >
> > TBH, I don't really agree that it is there for documentation. The
> > only purpose of such compiler flags is to try make code more
> > efficient.
> >
> > Anyway, I got to this series as someone asked me to fix this for one
> > of my patches which used unlikely(IS_ERR_OR_NULL()). And so I
> > thought about fixing all sites that are doing double unlikely (that
> > shouldn't hurt for sure).
> >
> > I will leave it to you.
>
> I think that unlikely() macro here make code more readable. Yes, it is
> also for compiler optimization, but also for me it looks like Clean Code
> pattern <https://de.wikipedia.org/wiki/Clean_Code> -- is not it?
People know that errors are unlikely, no need to tell them. I'd remove
it.
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-input" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH 05/15] drivers: input: Drop unlikely before IS_ERR(_OR_NULL)
2015-08-02 15:43 ` Pavel Machek
@ 2015-08-02 15:59 ` Pali Rohár
0 siblings, 0 replies; 6+ messages in thread
From: Pali Rohár @ 2015-08-02 15:59 UTC (permalink / raw)
To: Pavel Machek
Cc: Viresh Kumar, Dmitry Torokhov, akpm, linaro-kernel, linux-kernel,
Hans de Goede,
open list:INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN)...,
Masaki Ota
[-- Attachment #1: Type: Text/Plain, Size: 1464 bytes --]
On Sunday 02 August 2015 17:43:52 Pavel Machek wrote:
> On Sat 2015-08-01 13:44:59, Pali Rohár wrote:
> > On Saturday 01 August 2015 13:22:51 Viresh Kumar wrote:
> > > On 31-07-15, 09:58, Dmitry Torokhov wrote:
> > > > On Fri, Jul 31, 2015 at 02:08:25PM +0530, Viresh Kumar wrote:
> > > > > IS_ERR(_OR_NULL) already contain an 'unlikely' compiler flag
> > > > > and there is no need to do that again from its callers. Drop
> > > > > it.
> > > >
> > > > I'd rather keep it as it documents the expected behavior and
> > > > double unlikely should work just fine.
> > >
> > > TBH, I don't really agree that it is there for documentation. The
> > > only purpose of such compiler flags is to try make code more
> > > efficient.
> > >
> > > Anyway, I got to this series as someone asked me to fix this for
> > > one of my patches which used unlikely(IS_ERR_OR_NULL()). And so
> > > I thought about fixing all sites that are doing double unlikely
> > > (that shouldn't hurt for sure).
> > >
> > > I will leave it to you.
> >
> > I think that unlikely() macro here make code more readable. Yes, it
> > is also for compiler optimization, but also for me it looks like
> > Clean Code pattern <https://de.wikipedia.org/wiki/Clean_Code> --
> > is not it?
>
> People know that errors are unlikely, no need to tell them. I'd
> remove it.
> Pavel
Errors and bugs are always unlikely ;-)
--
Pali Rohár
pali.rohar@gmail.com
[-- Attachment #2: This is a digitally signed message part. --]
[-- Type: application/pgp-signature, Size: 198 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2015-08-02 15:59 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
[not found] <cover.1438331416.git.viresh.kumar@linaro.org>
2015-07-31 8:38 ` [PATCH 05/15] drivers: input: Drop unlikely before IS_ERR(_OR_NULL) Viresh Kumar
2015-07-31 16:58 ` Dmitry Torokhov
2015-08-01 11:22 ` Viresh Kumar
2015-08-01 11:44 ` Pali Rohár
2015-08-02 15:43 ` Pavel Machek
2015-08-02 15:59 ` Pali Rohár
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).