lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Date:	Fri, 29 Apr 2011 10:02:53 -0700
From:	J Freyensee <james_p_freyensee@...ux.intel.com>
To:	Jesper Juhl <jj@...osbits.net>
Cc:	gregkh@...e.de, linux-kernel@...r.kernel.org,
	suhail.ahmed@...el.com, christophe.guerard@...el.com
Subject: Re: [PATCH 4/4] n_tracerouter and n_tracesink ldisc additions.

Thanks for the feedback.  I've been out on business and will go through
the comments when I can.

Jay

On Sun, 2011-04-24 at 03:04 +0200, Jesper Juhl wrote:
> On Fri, 22 Apr 2011, james_p_freyensee@...ux.intel.com wrote:
> 
> > From: J Freyensee <james_p_freyensee@...ux.intel.com>
> > 
> > The n_tracerouter and n_tracesink line discpline drivers use the
> > Linux tty line discpline framework to route trace data coming
> > from a tty port (say UART for example) to the trace sink line
> > discipline driver and to another tty port(say USB).  Those
> > these two line discipline drivers can be used together,
> > independently from pti.c, they are part of the original
> > implementation solution of the MIPI P1149.7, compact JTAG, PTI
> > solution for Intel mobile platforms starting with the
> > Medfield platform.
> > 
> > Signed-off-by: J Freyensee <james_p_freyensee@...ux.intel.com>
> 
> A few minor comments can be found below.
> 
> 
> ...
> > +static int n_tracesink_open(struct tty_struct *tty)
> > +{
> > +	int retval = -EEXIST;
> > +
> > +	mutex_lock(&writelock);
> > +	if (this_tty == NULL) {
> > +
> > +		this_tty = tty_kref_get(tty);
> > +
> 
> pointless blank line. I'd suggest removing it.
> 
> 
> ...
> > +		if (this_tty == NULL)
> > +			retval = -EFAULT;
> > +		else {
> 
> If one branch requires braces, both should have them
> 
>         } else {
> 
> 
> ...
> > +static void n_tracesink_close(struct tty_struct *tty)
> > +{
> > +
> > +	mutex_lock(&writelock);
> > +	tty_driver_flush_buffer(tty);
> > +	tty_kref_put(this_tty);
> > +	this_tty = NULL;
> > +	tty->disc_data = NULL;
> > +	mutex_unlock(&writelock);
> > +
> > +}
> 
> pointless blank line at end of function. Remove it.
> 
> 
> > +static int __init n_tracesink_init(void)
> > +{
> > +	int retval;
> > +
> > +	/* Note N_TRACESINK is defined in linux/tty.h */
> > +	retval = tty_register_ldisc(N_TRACESINK, &tty_n_tracesink);
> > +
> > +	if (retval < 0)
> > +		pr_err("%s: Registration failed: %d\n", __func__, retval);
> > +
> > +	return retval;
> > +}
> 
> How about shortening is a bit - like this?
> 
> static int __init n_tracesink_init(void)
> {
>      /* Note N_TRACESINK is defined in linux/tty.h */
>      int retval = tty_register_ldisc(N_TRACESINK, &tty_n_tracesink);
>      
>      if (retval < 0)
>              pr_err("%s: Registration failed: %d\n", __func__, retval);
>              
>      return retval;
> }
> 
> 
> ...
> > +static void __exit n_tracesink_exit(void)
> > +{
> > +	int retval;
> > +
> > +	retval = tty_unregister_ldisc(N_TRACESINK);
> > +
> > +	if (retval < 0)
> > +		pr_err("%s: Unregistration failed: %d\n", __func__,  retval);
> > +}
> 
> How about:
> 
> static void __exit n_tracesink_exit(void)
> {
>      int retval = tty_unregister_ldisc(N_TRACESINK);
>      
>      if (retval < 0)
>              pr_err("%s: Unregistration failed: %d\n", __func__,  retval);
> }
> 
> 
> ...
> > --- a/include/linux/tty.h
> > +++ b/include/linux/tty.h
> > @@ -50,6 +50,8 @@
> >  #define N_CAIF		20      /* CAIF protocol for talking to modems */
> >  #define N_GSM0710	21	/* GSM 0710 Mux */
> >  #define N_TI_WL		22	/* for TI's WL BT, FM, GPS combo chips */
> > +#define N_TRACESINK	23	/* Trace data routing for MIPI P1149.7 */
> > +#define N_TRACEROUTER	24	/* Trace data routing for MIPI P1149.7 */
> >  
> 
> Lining up those defines would be nice :)
> 
> 


--
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

Powered by Openwall GNU/*/Linux Powered by OpenVZ