[LinuxPPS] [PATCHv2 4/6] pps: add kernel consumer support

Alexander Gordeev lasaine at lvk.cs.msu.su
Mon Mar 1 11:48:01 CET 2010


On Mon, 1 Mar 2010 09:29:16 +0100
Rodolfo Giometti <giometti at enneenne.com> wrote:

> On Wed, Feb 24, 2010 at 03:28:15PM +0300, Alexander Gordeev wrote:
> > Add an optional feature of PPSAPI, kernel consumer support, which uses
> > the added hardpps() function.
> > 
> > Signed-off-by: Alexander Gordeev <lasaine at lvk.cs.msu.su>
> 
> Acked-by: Rodolfo Giometti <giometti at linux.it>
> 
> However see the note below.
> 
> > ---
> >  Documentation/ioctl/ioctl-number.txt |    2 +-
> >  drivers/pps/kapi.c                   |   26 +++++++++++++
> >  drivers/pps/pps.c                    |   67 +++++++++++++++++++++++++++++++++-
> >  include/linux/pps.h                  |    7 ++++
> >  include/linux/pps_kernel.h           |    6 +++
> >  5 files changed, 106 insertions(+), 2 deletions(-)
> > 
> > diff --git a/Documentation/ioctl/ioctl-number.txt b/Documentation/ioctl/ioctl-number.txt
> > index 9473749..d68718b 100644
> > --- a/Documentation/ioctl/ioctl-number.txt
> > +++ b/Documentation/ioctl/ioctl-number.txt
> > @@ -152,7 +152,7 @@ Code	Seq#	Include File		Comments
> >  'p'	40-7F	linux/nvram.h
> >  'p'	80-9F				user-space parport
> >  					<mailto:tim at cyberelk.net>
> > -'p'	a1-a4	linux/pps.h		LinuxPPS
> > +'p'	a1-a5	linux/pps.h		LinuxPPS
> >  					<mailto:giometti at linux.it>
> >  'q'	00-1F	linux/serio.h
> >  'q'	80-FF				Internet PhoneJACK, Internet LineJACK
> > diff --git a/drivers/pps/kapi.c b/drivers/pps/kapi.c
> > index b87f699..5871744 100644
> > --- a/drivers/pps/kapi.c
> > +++ b/drivers/pps/kapi.c
> > @@ -25,6 +25,7 @@
> >  #include <linux/init.h>
> >  #include <linux/sched.h>
> >  #include <linux/time.h>
> > +#include <linux/timex.h>
> >  #include <linux/spinlock.h>
> >  #include <linux/idr.h>
> >  #include <linux/fs.h>
> > @@ -37,6 +38,12 @@
> >  DEFINE_SPINLOCK(pps_idr_lock);
> >  DEFINE_IDR(pps_idr);
> >  
> > +/* state variables to bind kernel consumer */
> > +/* PPS API (RFC 2783): current source and mode for ``kernel consumer'' */
> > +DEFINE_SPINLOCK(pps_kc_hardpps_lock);
> > +void	*pps_kc_hardpps_dev;	/* some unique pointer to device */
> > +int	pps_kc_hardpps_mode;	/* mode bits for kernel consumer */
> > +
> >  /*
> >   * Local functions
> >   */
> > @@ -248,6 +255,15 @@ void pps_unregister_source(int source)
> >  	}
> >  	spin_unlock_irq(&pps_idr_lock);
> >  
> > +	spin_lock_irq(&pps_kc_hardpps_lock);
> > +	if (pps == pps_kc_hardpps_dev) {
> > +		pps_kc_hardpps_mode = 0;
> > +		pps_kc_hardpps_dev = NULL;
> > +		spin_unlock_irq(&pps_kc_hardpps_lock);
> > +		pr_info("unbound kernel consumer on device removal\n");
> > +	} else
> > +		spin_unlock_irq(&pps_kc_hardpps_lock);
> > +
> 
> I suppose you are using such if-else schema due the fact pr_info is
> too slow to be executed with helded spinlock, arent't you? :)

Yes, indeed. Is it ok? :)

-- 
  Alexander
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 489 bytes
Desc: not available
Url : http://ml.enneenne.com/pipermail/linuxpps/attachments/20100301/49687f83/attachment-0001.pgp 


More information about the LinuxPPS mailing list