All of lore.kernel.org
 help / color / mirror / Atom feed
From: Alexander Aring <alex.aring@gmail.com>
To: Marcel Holtmann <marcel@holtmann.org>
Cc: linux-wpan@vger.kernel.org, kernel@pengutronix.de
Subject: Re: [PATCH bluetooth-next 2/2] ieee802154: iface: move multiple node type check
Date: Fri, 19 Dec 2014 23:36:56 +0100	[thread overview]
Message-ID: <20141219223653.GA21901@omega> (raw)
In-Reply-To: <40D0A383-0A03-457B-81BC-2C492D798D98@holtmann.org>

Hi Marcel,

On Fri, Dec 19, 2014 at 11:33:11PM +0100, Marcel Holtmann wrote:
> Hi Alex,
> 
> > This patch moves the handling for checking on multiple node type
> > interface to the corresponding concurrent iface check function.
> > 
> > Signed-off-by: Alexander Aring <alex.aring@gmail.com>
> > ---
> > net/mac802154/iface.c | 24 ++++++++++--------------
> > 1 file changed, 10 insertions(+), 14 deletions(-)
> > 
> > diff --git a/net/mac802154/iface.c b/net/mac802154/iface.c
> > index 509621a..b5aab5a 100644
> > --- a/net/mac802154/iface.c
> > +++ b/net/mac802154/iface.c
> > @@ -137,25 +137,11 @@ static int mac802154_wpan_mac_addr(struct net_device *dev, void *p)
> > static int mac802154_slave_open(struct net_device *dev)
> > {
> > 	struct ieee802154_sub_if_data *sdata = IEEE802154_DEV_TO_SUB_IF(dev);
> > -	struct ieee802154_sub_if_data *subif;
> > 	struct ieee802154_local *local = sdata->local;
> > 	int res = 0;
> > 
> > 	ASSERT_RTNL();
> > 
> > -	if (sdata->vif.type == NL802154_IFTYPE_NODE) {
> > -		mutex_lock(&sdata->local->iflist_mtx);
> > -		list_for_each_entry(subif, &sdata->local->interfaces, list) {
> > -			if (subif != sdata &&
> > -			    subif->vif.type == sdata->vif.type &&
> > -			    ieee802154_sdata_running(subif)) {
> > -				mutex_unlock(&sdata->local->iflist_mtx);
> > -				return -EBUSY;
> > -			}
> > -		}
> > -		mutex_unlock(&sdata->local->iflist_mtx);
> > -	}
> > -
> > 	set_bit(SDATA_STATE_RUNNING, &sdata->state);
> > 
> > 	if (!local->open_count) {
> > @@ -234,6 +220,16 @@ ieee802154_check_concurrent_iface(struct ieee802154_sub_if_data *sdata,
> > 	list_for_each_entry(nsdata, &local->interfaces, list) {
> > 		if (nsdata != sdata && ieee802154_sdata_running(nsdata)) {
> > 			int ret;
> > +
> > +			/* TODO currently we don't support multiple node types
> > +			 * we need to run skb_clone at rx path. Check if there
> > +			 * exist really an use case if we need to support
> > +			 * multiple node types at the same time.
> > +			 */
> > +			if (sdata->vif.type == NL802154_IFTYPE_NODE &&
> > +			    nsdata->vif.type == NL802154_IFTYPE_NODE)
> > +				return -EBUSY;
> > +
> 
> here you end up doing it correctly and fixing it, ..
> 
> > 			/* check all phy mac sublayer settings are the same.
> > 			 * We have only one phy, different values makes trouble.
> > 			 */
> 
> .. but that still leaves the extra empty line after this comment. You need to redo these two patches.
> 

ok.

- Alex

      reply	other threads:[~2014-12-19 22:37 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-12-19 22:28 [PATCH bluetooth-next 0/2] mac802154: iface: better concurrent iface handling Alexander Aring
2014-12-19 22:28 ` [PATCH bluetooth-next 1/2] mac802154: iface: check concurrent ifaces Alexander Aring
2014-12-19 22:31   ` Marcel Holtmann
2014-12-19 22:28 ` [PATCH bluetooth-next 2/2] ieee802154: iface: move multiple node type check Alexander Aring
2014-12-19 22:33   ` Marcel Holtmann
2014-12-19 22:36     ` Alexander Aring [this message]

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=20141219223653.GA21901@omega \
    --to=alex.aring@gmail.com \
    --cc=kernel@pengutronix.de \
    --cc=linux-wpan@vger.kernel.org \
    --cc=marcel@holtmann.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.