Hi Andrei, > Use locked and unlocked versions to help removing socket > locks from l2cap. > > Signed-off-by: Andrei Emeltchenko <andrei.emeltchenko@xxxxxxxxx> > --- > net/bluetooth/l2cap_core.c | 30 +++++++++++++++++++++--------- > 1 files changed, 21 insertions(+), 9 deletions(-) > > diff --git a/net/bluetooth/l2cap_core.c b/net/bluetooth/l2cap_core.c > index a23c306..e6515b3 100644 > --- a/net/bluetooth/l2cap_core.c > +++ b/net/bluetooth/l2cap_core.c > @@ -243,6 +243,22 @@ static void l2cap_state_change(struct l2cap_chan *chan, int state) > release_sock(sk); > } > > +static inline void __l2cap_set_sock_err(struct l2cap_chan *chan, int err) > +{ > + struct sock *sk = chan->sk; > + > + sk->sk_err = err; > +} > + > +static inline void l2cap_set_sock_err(struct l2cap_chan *chan, int err) > +{ > + struct sock *sk = chan->sk; > + > + lock_sock(sk); > + __l2cap_set_sock_err(chan, err); > + release_sock(sk); > +} I think we better call this l2cap_chan_set_sock_err(). Sounds kinda long, but makes it a bit more clearer what it does. Regards Marcel -- To unsubscribe from this list: send the line "unsubscribe linux-bluetooth" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html