* [PATCH] l2cap_chan_connect() shouldn't be inlined @ 2012-02-05 6:21 Al Viro [not found] ` <20120205062105.GZ23916-3bDd1+5oDREiFSDQTTA3OLVCufUGDwFn@public.gmane.org> 0 siblings, 1 reply; 3+ messages in thread From: Al Viro @ 2012-02-05 6:21 UTC (permalink / raw) To: Marcel Holtmann Cc: linux-bluetooth-u79uwXL29TY76Z2rM5mHXA, netdev-u79uwXL29TY76Z2rM5mHXA, David Miller For one thing, it's big. For another, the only caller is in a different file anyway... Signed-off-by: Al Viro <viro-RmSDqhL/yNMiFSDQTTA3OLVCufUGDwFn@public.gmane.org> diff --git a/include/net/bluetooth/l2cap.h b/include/net/bluetooth/l2cap.h index 68f5891..124f7cf 100644 --- a/include/net/bluetooth/l2cap.h +++ b/include/net/bluetooth/l2cap.h @@ -834,7 +834,7 @@ int l2cap_add_scid(struct l2cap_chan *chan, __u16 scid); struct l2cap_chan *l2cap_chan_create(struct sock *sk); void l2cap_chan_close(struct l2cap_chan *chan, int reason); void l2cap_chan_destroy(struct l2cap_chan *chan); -inline int l2cap_chan_connect(struct l2cap_chan *chan, __le16 psm, u16 cid, +int l2cap_chan_connect(struct l2cap_chan *chan, __le16 psm, u16 cid, bdaddr_t *dst); int l2cap_chan_send(struct l2cap_chan *chan, struct msghdr *msg, size_t len, u32 priority); diff --git a/net/bluetooth/l2cap_core.c b/net/bluetooth/l2cap_core.c index faf0b11..980abdb 100644 --- a/net/bluetooth/l2cap_core.c +++ b/net/bluetooth/l2cap_core.c @@ -1120,7 +1120,7 @@ static struct l2cap_chan *l2cap_global_chan_by_psm(int state, __le16 psm, bdaddr return c1; } -inline int l2cap_chan_connect(struct l2cap_chan *chan, __le16 psm, u16 cid, bdaddr_t *dst) +int l2cap_chan_connect(struct l2cap_chan *chan, __le16 psm, u16 cid, bdaddr_t *dst) { struct sock *sk = chan->sk; bdaddr_t *src = &bt_sk(sk)->src; ^ permalink raw reply related [flat|nested] 3+ messages in thread
[parent not found: <20120205062105.GZ23916-3bDd1+5oDREiFSDQTTA3OLVCufUGDwFn@public.gmane.org>]
* Re: [PATCH] l2cap_chan_connect() shouldn't be inlined [not found] ` <20120205062105.GZ23916-3bDd1+5oDREiFSDQTTA3OLVCufUGDwFn@public.gmane.org> @ 2012-02-05 19:12 ` Marcel Holtmann 2012-02-06 8:43 ` Andrei Emeltchenko 0 siblings, 1 reply; 3+ messages in thread From: Marcel Holtmann @ 2012-02-05 19:12 UTC (permalink / raw) To: Al Viro Cc: linux-bluetooth-u79uwXL29TY76Z2rM5mHXA, netdev-u79uwXL29TY76Z2rM5mHXA, David Miller Hi Al, > For one thing, it's big. For another, the only caller is in a different > file anyway... > > Signed-off-by: Al Viro <viro-RmSDqhL/yNMiFSDQTTA3OLVCufUGDwFn@public.gmane.org> > > diff --git a/include/net/bluetooth/l2cap.h b/include/net/bluetooth/l2cap.h > index 68f5891..124f7cf 100644 > --- a/include/net/bluetooth/l2cap.h > +++ b/include/net/bluetooth/l2cap.h > @@ -834,7 +834,7 @@ int l2cap_add_scid(struct l2cap_chan *chan, __u16 scid); > struct l2cap_chan *l2cap_chan_create(struct sock *sk); > void l2cap_chan_close(struct l2cap_chan *chan, int reason); > void l2cap_chan_destroy(struct l2cap_chan *chan); > -inline int l2cap_chan_connect(struct l2cap_chan *chan, __le16 psm, u16 cid, > +int l2cap_chan_connect(struct l2cap_chan *chan, __le16 psm, u16 cid, > bdaddr_t *dst); I have no idea on how that happened, but you are fully correct this is pointless. Acked-by: Marcel Holtmann <marcel-kz+m5ild9QBg9hUCZPvPmw@public.gmane.org> Regards Marcel ^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] l2cap_chan_connect() shouldn't be inlined 2012-02-05 19:12 ` Marcel Holtmann @ 2012-02-06 8:43 ` Andrei Emeltchenko 0 siblings, 0 replies; 3+ messages in thread From: Andrei Emeltchenko @ 2012-02-06 8:43 UTC (permalink / raw) To: Marcel Holtmann Cc: Al Viro, linux-bluetooth-u79uwXL29TY76Z2rM5mHXA, netdev-u79uwXL29TY76Z2rM5mHXA, David Miller Hi all, On Sun, Feb 05, 2012 at 11:12:10AM -0800, Marcel Holtmann wrote: > Hi Al, > > > For one thing, it's big. For another, the only caller is in a different > > file anyway... > > > > Signed-off-by: Al Viro <viro-RmSDqhL/yNMiFSDQTTA3OLVCufUGDwFn@public.gmane.org> > > > > diff --git a/include/net/bluetooth/l2cap.h b/include/net/bluetooth/l2cap.h > > index 68f5891..124f7cf 100644 > > --- a/include/net/bluetooth/l2cap.h > > +++ b/include/net/bluetooth/l2cap.h > > @@ -834,7 +834,7 @@ int l2cap_add_scid(struct l2cap_chan *chan, __u16 scid); > > struct l2cap_chan *l2cap_chan_create(struct sock *sk); > > void l2cap_chan_close(struct l2cap_chan *chan, int reason); > > void l2cap_chan_destroy(struct l2cap_chan *chan); > > -inline int l2cap_chan_connect(struct l2cap_chan *chan, __le16 psm, u16 cid, > > +int l2cap_chan_connect(struct l2cap_chan *chan, __le16 psm, u16 cid, > > bdaddr_t *dst); > > I have no idea on how that happened, but you are fully correct this is > pointless. > > Acked-by: Marcel Holtmann <marcel-kz+m5ild9QBg9hUCZPvPmw@public.gmane.org> Similar patch has been already applied a month ago to our bluetooth tree commit 79aa1a3322cfa65199a0d87eacd41bd1fbc33a1d Author: Johan Hedberg <johan.hedberg-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org> Date: Sun Jan 8 22:51:16 2012 +0200 Best regards Andrei Emeltchenko ^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2012-02-06 8:43 UTC | newest] Thread overview: 3+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2012-02-05 6:21 [PATCH] l2cap_chan_connect() shouldn't be inlined Al Viro [not found] ` <20120205062105.GZ23916-3bDd1+5oDREiFSDQTTA3OLVCufUGDwFn@public.gmane.org> 2012-02-05 19:12 ` Marcel Holtmann 2012-02-06 8:43 ` Andrei Emeltchenko
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).