[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <Pine.LNX.4.44L0.0803151708160.28007-100000@netrider.rowland.org>
Date: Sat, 15 Mar 2008 17:53:10 -0400 (EDT)
From: Alan Stern <stern@...land.harvard.edu>
To: Greg KH <greg@...ah.com>,
Andrew Morton <akpm@...ux-foundation.org>,
"Rafael J. Wysocki" <rjw@...k.pl>
cc: Kamalesh Babulal <kamalesh@...ux.vnet.ibm.com>,
<linux-next@...r.kernel.org>, <sfr@...b.auug.org.au>,
Kernel development list <linux-kernel@...r.kernel.org>,
<apw@...dowen.org>, Len Brown <lenb@...nel.org>,
Linux-pm mailing list <linux-pm@...ts.linux-foundation.org>
Subject: [PATCH 0/3] PM wakeup flags revisited
On Fri, 14 Mar 2008, Rafael J. Wysocki wrote:
> On Friday, 14 of March 2008, Andrew Morton wrote:
> > Sorry, but that code should be dragged out and shot. Doing this:
> >
> > > device_can_wakeup(tty_dev) = 1;
> >
> > is just gross and stupid. It looks daft, it isn't C and it *requires* that
> > device_can_wakeup() be implemented as a macro, which totally busts any
> > concept of abstraction.
It seems to have been a one-time occurrence. This patch series fixes
it.
> > The code previously had quite reasonable accessors:
> >
> > #define device_set_wakeup_enable(dev,val) \
> > ((dev)->power.should_wakeup = !!(val))
> > #define device_may_wakeup(dev) \
> > (device_can_wakeup(dev) && (dev)->power.should_wakeup)
> >
> > can we please go back to that scheme? Please also convert all these
> > magical macros into inlined C functions. One reason is that this:
> >
> > +#define device_init_wakeup(dev,val) \
> > + do { \
> > + device_can_wakeup(dev) = !!(val); \
> > + device_set_wakeup_enable(dev,val); \
> > + } while(0)
> >
> > is buggy. It evaluates its arguments multiple times and will cause
> > failures when passed expressions which have side-effects.
This series converts the macros to inline functions.
> > Alan, please also pass all future patches through checkpatch - there is no
> > need to be adding trivial coding-style errors in this day and age.
Rest assurred that checkpath is now an integral part of my normal
workflow. All the patches in this series pass with flying colors.
> Well, Greg please drop the "PM: make wakeup flags available whenever CONFIG_PM
> is set" and Alan please resubmit the patch with the problems pointed out by
> Andrew fixed.
>
> In fact I'd even prefer it to be two patches, one that moves should_wakeup and
> the related macros out of the CONFIG_PM_SLEEP #ifdef, because that's what fixes
> the problem described in the changelog, and one that makes the remaining
> changes with a separate changelog.
Done.
The 1/3 patch fixes the unfortunate code in the serial-core driver.
The 2/3 patch moves the macros out from under CONFIG_PM_SLEEP.
The 3/3 patch converts the macros to inline functions and creates a new
pm_wakeup.h file for them. They can't remain in pm.h, because they
depend on the definition of struct device -- and the compiler hasn't
seen that yet when pm.h is read.
It's not clear why the can_wakeup accessors are written to work even
when CONFIG_PM isn't set. Nevertheless, the patches retain that
behavior.
Alan Stern
--
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