From: J Freyensee <james_p_freyensee@linux.intel.com>
To: Thomas Gleixner <tglx@linutronix.de>
Cc: gregkh@suse.de, linux-kernel@vger.kernel.org,
suhail.ahmed@intel.com, christophe.guerard@intel.com
Subject: Re: [PATCH 09/10] n_tracerouter ldisc driver.
Date: Thu, 24 Feb 2011 12:20:10 -0800 [thread overview]
Message-ID: <1298578810.2315.70.camel@localhost> (raw)
In-Reply-To: <alpine.LFD.2.00.1102242002410.2701@localhost6.localdomain6>
On Thu, 2011-02-24 at 20:20 +0100, Thomas Gleixner wrote:
> On Thu, 24 Feb 2011, james_p_freyensee@linux.intel.com wrote:
> > +
> > +/**
> > + * tracerouter_alloc
> > + *
> > + * Allocates the structure needed for this ldisc.
> > + */
> > +static struct tracerouter_data *tracerouter_alloc(void)
> > +{
> > + struct tracerouter_data *tptr = kzalloc(
> > + sizeof(struct tracerouter_data),
> > + GFP_KERNEL);
> > + if (tptr == NULL)
> > + return NULL;
> > + tptr->opencalled = 0;
>
> Wheeee!
>
> You first alloc it with kzalloc and then clear the already zero member
> again ?
>
> That whole crap condenses down to:
>
> return kzalloc(sizeof(*tptr), GFP_KERNEL);
>
> Which hardly justfies a separate function
>
> > + return tptr;
> > +}
> > +
> > +/**
> > + * n_tracerouter_open() - Called when a tty is opened by a SW entity.
> > + * @tty: terminal device to the ldisc.
> > + *
> > + * Return:
> > + * 0 for success.
> > + *
> > + * Caveats: This should only be opened one time per SW entity.
> > + */
> > +static int n_tracerouter_open(struct tty_struct *tty)
> > +{
> > + int retval = -EEXIST;
> > +
> > + mutex_lock(&routelock);
> > + if (tr_data->opencalled == 0) {
> > +
> > + tr_data->kref_tty = tty_kref_get(tty);
> > + if (tr_data->kref_tty == NULL)
> > + retval = -EFAULT;
> > + else {
>
> Please use braces for the if as well. It's just irritating not to have
> them before the else.
checkpatch.pl did not care about the lack of braces so that is why this
got missed; I can add it.
>
> > + tr_data->opencalled = 1;
> > + tty->disc_data = tr_data;
> > + tty->receive_room = RECEIVE_ROOM;
> > + tty_driver_flush_buffer(tty);
> > + retval = 0;
> > + }
> > + }
> > + mutex_unlock(&routelock);
> > + return retval;
> > +}
> > +
> > +/**
> > + * n_tracerouter_close() - close connection
> > + * @tty: terminal device to the ldisc.
> > + *
> > + * Called when a software entity wants to close a connection.
> > + */
> > +static void n_tracerouter_close(struct tty_struct *tty)
> > +{
> > + struct tracerouter_data *tptr = tty->disc_data;
> > +
> > + WARN_ON(tptr->kref_tty != tr_data->kref_tty);
> > + tty_driver_flush_buffer(tty);
>
> That code probably never run with lockdep as you would get a potential
> deadlock warning. See n_tracerouter_open().
>
> Though the deadlock cannot happen as you are protected by
> tr_data->opencalled it does not make it more correct.
>
What do you suggest to make it correct for upstream?
Thanks,
jay
> > + mutex_lock(&routelock);
> > + tty_kref_put(tr_data->kref_tty);
> > + tr_data->kref_tty = NULL;
> > + tr_data->opencalled = 0;
> > + tty->disc_data = NULL;
> > + mutex_unlock(&routelock);
> > +}
> > +
>
> Thanks,
>
> tglx
next prev parent reply other threads:[~2011-02-24 20:20 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-02-24 18:07 [PATCH 09/10] n_tracerouter ldisc driver james_p_freyensee
2011-02-24 19:20 ` Thomas Gleixner
2011-02-24 20:20 ` J Freyensee [this message]
2011-02-24 20:27 ` Thomas Gleixner
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1298578810.2315.70.camel@localhost \
--to=james_p_freyensee@linux.intel.com \
--cc=christophe.guerard@intel.com \
--cc=gregkh@suse.de \
--cc=linux-kernel@vger.kernel.org \
--cc=suhail.ahmed@intel.com \
--cc=tglx@linutronix.de \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox