From: Samuel Ortiz <sameo-VuQAYsv1563Yd54FQh9/CA@public.gmane.org>
To: "Mark A. Greer" <mgreer-luAo+O/VEmrlveNOaEYElw@public.gmane.org>
Cc: Lauro Ramos Venancio
<lauro.venancio-430g2QfJUUCGglJvpFV4uA@public.gmane.org>,
Aloisio Almeida Jr
<aloisio.almeida-430g2QfJUUCGglJvpFV4uA@public.gmane.org>,
Felipe Balbi <balbi-l0cyMroinI0@public.gmane.org>,
Erick Macias <emacias-l0cyMroinI0@public.gmane.org>,
Thierry Escande
<thierry.escande-VuQAYsv1563Yd54FQh9/CA@public.gmane.org>,
linux-wireless-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
linux-nfc-hn68Rpc1hR1g9hUCZPvPmw@public.gmane.org,
devicetree-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
Subject: Re: [PATCH 1/3] NFC: trf7970a: Add driver with ISO/IEC 14443 Type 2 Tag Support
Date: Wed, 5 Mar 2014 13:36:16 +0100 [thread overview]
Message-ID: <20140305123616.GC14401@zurbaran> (raw)
In-Reply-To: <20140305001943.GA29983-luAo+O/VEmrlveNOaEYElw@public.gmane.org>
On Tue, Mar 04, 2014 at 05:19:43PM -0700, Mark A. Greer wrote:
> On Wed, Feb 26, 2014 at 02:53:09PM -0700, Mark A. Greer wrote:
> > On Fri, Feb 21, 2014 at 01:50:59AM +0100, Samuel Ortiz wrote:
> >
> > > > +static int trf7970a_in_send_cmd(struct nfc_digital_dev *ddev,
> > > > + struct sk_buff *skb, u16 timeout,
> > > > + nfc_digital_cmd_complete_t cb, void *arg)
> > > > +{
> > > > + struct trf7970a *trf = nfc_digital_get_drvdata(ddev);
> > > > + char *prefix;
> > > > + unsigned int len;
> > > > + int ret;
> > > > +
> > > > + dev_dbg(trf->dev, "New request - state: %d, timeout: %d ms, len: %d\n",
> > > > + trf->state, timeout, skb->len);
> > > > +
> > > > + if (skb->len > TRF7970A_TX_MAX)
> > > > + return -EINVAL;
> > > > +
> > > > + mutex_lock(&trf->lock);
> > > > +
> > > > + if ((trf->state != TRF7970A_ST_IDLE) &&
> > > > + (trf->state != TRF7970A_ST_IDLE_RX_BLOCKED)) {
> > > > + dev_err(trf->dev, "%s - Bogus state: %d\n", __func__,
> > > > + trf->state);
> > > > + ret = -EIO;
> > > > + goto out_err;
> > > > + }
> > > > +
> > > > + trf->rx_skb = nfc_alloc_recv_skb(TRF7970A_RX_SKB_ALLOC_SIZE,
> > > > + GFP_KERNEL);
> > > > + if (!trf->rx_skb) {
> > > > + dev_dbg(trf->dev, "Can't alloc rx_skb\n");
> > > > + ret = -ENOMEM;
> > > > + goto out_err;
> > > > + }
> > > > +
> > > > + if (trf->state == TRF7970A_ST_IDLE_RX_BLOCKED) {
> > > > + ret = trf7970a_cmd(trf, TRF7970A_CMD_ENABLE_RX);
> > > > + if (ret)
> > > > + goto out_err;
> > > > +
> > > > + trf->state = TRF7970A_ST_IDLE;
> > > > + }
> > > > +
> > > > + ret = trf7970a_per_cmd_config(trf, skb);
> > > > + if (ret)
> > > > + goto out_err;
> > > > +
> > > > + trf->ddev = ddev;
> > > > + trf->tx_skb = skb;
> > > As you're going to carry this guy around and may need it from e.g. your
> > > threaded interrupt handler, shouldn't you take a reference (skb_get) on it ?
> > > I'm concerned by the fact that you could see your tx_skb disappear from
> > > abort_cmd and get an IRQ before your state is set to IDLE.
> > > Hmm, I guess that's protected by the mutex and so when you get an abort
> > > from the digital stack you reset the state to IDLE and no one should try
> > > to touch tx_skb after you release the mutex. Is that what you had in
> > > mind ?
> >
> > It is but taking a reference is a good idea. I'll add that.
>
> I've changed my mind on this (hope that's okay).
>
> The driver is in control of freeing that skb and won't free it until
> there's an abort or the processing is complete. I believe that handle
> the race with an abort correctly.
That was my understanding as well, and I wanted to make sure that you
had that in mind too. It seems to be the case.
Cheers,
Samuel.
--
Intel Open Source Technology Centre
http://oss.intel.com/
--
To unsubscribe from this list: send the line "unsubscribe linux-wireless" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
next prev parent reply other threads:[~2014-03-05 12:36 UTC|newest]
Thread overview: 15+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-01-31 22:17 [PATCH 0/3] NFC: trf7970a: Add driver with NFC Type 2 and Type V Support Mark A. Greer
[not found] ` <1391206631-9862-1-git-send-email-mgreer-luAo+O/VEmrlveNOaEYElw@public.gmane.org>
2014-01-31 22:17 ` [PATCH 1/3] NFC: trf7970a: Add driver with ISO/IEC 14443 Type 2 Tag Support Mark A. Greer
[not found] ` <1391206631-9862-2-git-send-email-mgreer-luAo+O/VEmrlveNOaEYElw@public.gmane.org>
2014-02-21 0:50 ` Samuel Ortiz
2014-02-21 1:20 ` Felipe Balbi
2014-02-26 21:53 ` Mark A. Greer
[not found] ` <20140226215309.GA21867-luAo+O/VEmrlveNOaEYElw@public.gmane.org>
2014-03-03 18:11 ` Mark A. Greer
[not found] ` <20140303181112.GA32605-luAo+O/VEmrlveNOaEYElw@public.gmane.org>
2014-03-03 20:37 ` Samuel Ortiz
2014-03-05 0:19 ` Mark A. Greer
[not found] ` <20140305001943.GA29983-luAo+O/VEmrlveNOaEYElw@public.gmane.org>
2014-03-05 12:36 ` Samuel Ortiz [this message]
2014-01-31 22:17 ` [PATCH 2/3] NFC: trf7970a: Add ISO/IEC 15693 Support Mark A. Greer
[not found] ` <1391206631-9862-3-git-send-email-mgreer-luAo+O/VEmrlveNOaEYElw@public.gmane.org>
2014-02-21 1:00 ` Samuel Ortiz
2014-02-26 21:53 ` Mark A. Greer
2014-01-31 22:17 ` [PATCH 3/3] NFC: trf7970a: Add DTS Documentation Mark A. Greer
[not found] ` <1391206631-9862-4-git-send-email-mgreer-luAo+O/VEmrlveNOaEYElw@public.gmane.org>
2014-02-21 1:04 ` Samuel Ortiz
2014-02-26 21:54 ` Mark A. Greer
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=20140305123616.GC14401@zurbaran \
--to=sameo-vuqaysv1563yd54fqh9/ca@public.gmane.org \
--cc=aloisio.almeida-430g2QfJUUCGglJvpFV4uA@public.gmane.org \
--cc=balbi-l0cyMroinI0@public.gmane.org \
--cc=devicetree-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
--cc=emacias-l0cyMroinI0@public.gmane.org \
--cc=lauro.venancio-430g2QfJUUCGglJvpFV4uA@public.gmane.org \
--cc=linux-nfc-hn68Rpc1hR1g9hUCZPvPmw@public.gmane.org \
--cc=linux-wireless-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
--cc=mgreer-luAo+O/VEmrlveNOaEYElw@public.gmane.org \
--cc=thierry.escande-VuQAYsv1563Yd54FQh9/CA@public.gmane.org \
/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;
as well as URLs for NNTP newsgroup(s).