Re: [ltp] Re: Generic battery interface

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



Hi Michael,

Please do a Reply to All. I've restored the mailing list CCs.

On 7/31/06, Michael Olbrich <[email protected]> wrote:
On Mon, Jul 31, 2006 at 06:18:12PM +0300, Shem Multinymous wrote:
> On 7/31/06, Michael Olbrich <[email protected]> wrote:
> >Hmmm, that looks good for most cases. But how would you handle
> >starting/stoping laoding/draining the battery?
> >That usually results in values jumping from/to 0. A gui would want to
> >show such a change immediately while otherwise keeping a slow update
> >rate. Maybe some kind of threshhold parameter? "send an input-ready
> >immediatelly if the value changes by more than x%".
>
> Changes by more than x% compared to what?
>
> The value at the time of the ioctl()? This might completely miss a
> change that happened between the previous read() and the ioctl().
>
> The value at the time of the last read()? Then the kernel
> driver+infrastructure will need to keep track of the latest readout
> done by each app. That's pretty heavy.
>
> So what semantics make sense?

Well, the kernel is polling the hardware and caches the last value for
O_NONBLOCKing anyway. So we already have two values to compare.

It's caching *one* value, not one value per polling app  (i.e., opened file).
Also, if querying the hardware is very cheap, the driver is at freedom
to do that instead of caching.


And keeping the latest readout for each app isn't that heavy. After all
we already have to keep track of the timeouts for each app.

The timeouts bookkeeping will normally be done by some infrastructure,
and can often be (in principle) be optimized to less than on value per
app. Also, it's just one timestamp. By contrast, what you're asking
for requires explicit handling by every driver, and the attribute
value may take significant amount of storage -- per app.


Another way to handle this:
A lot of applications are interrested in changes. It would be perfectly
reasonable for a poll() to block for over 1 minute while the value
fluctuates with changes less than e.g. 1%. As soon as the change
(compared to the last readout) exceds this threshhold poll() returns
immediatelly. This could of course be combined with the proposed
timeouts.

The app can do this itself by polling and checking the value, with a
(not too) small value of dupeq.min_wait. In the case of a
polling-based data source, the resulting hardware queries and timer
interrupts are exactly the same as an in-kernel implementation which
does the polling and comparions itself. If the data source is
event-based then the comparison in userspace does have a drawback: the
comparions are done just dupeq.min_wait apart even if the event rate
happens to be higher. Can you think of a case where this matters?

 Shem
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [email protected]
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

[Index of Archives]     [Kernel Newbies]     [Netfilter]     [Bugtraq]     [Photo]     [Stuff]     [Gimp]     [Yosemite News]     [MIPS Linux]     [ARM Linux]     [Linux Security]     [Linux RAID]     [Video 4 Linux]     [Linux for the blind]     [Linux Resources]
  Powered by Linux