* pull request: bluetooth-next-2.6 2010-10-13
@ 2010-10-13 3:48 Gustavo F. Padovan
2010-10-13 21:41 ` Luis R. Rodriguez
2010-10-15 20:04 ` John W. Linville
0 siblings, 2 replies; 4+ messages in thread
From: Gustavo F. Padovan @ 2010-10-13 3:48 UTC (permalink / raw)
To: linville; +Cc: marcel, linux-wireless, linux-bluetooth
Hi John,
Here goes the Bluetooth patches for the next merge window. In this
patchset we have a new stream-oriented recvmsg() which is used in L2CAP
and RFCOMM. Support for two new MacBookPro devices. A buffer overflow
check for L2CAP to prevent frames exceeding the receiving MTU. All the
rest are simple bugfixes. No big features this time.
One notable change is in the MAINTAINERS file, From now and on I'm going
to maintain the Bluetooth trees as well as send the pull requests to you.
Despite this maintenance change, Marcel will remain helping with patch
review, and ACK/NAK in the Bluetooth subsystem as he always did. Not a
big change in the end. ;)
Thanks,
The following changes since commit 29b4433d991c88d86ca48a4c1cc33c671475be4b:
net: percpu net_device refcount (2010-10-12 12:35:25 -0700)
are available in the git repository at:
git://git.kernel.org/pub/scm/linux/kernel/git/padovan/bluetooth-next-2.6.git master
Andrei Emeltchenko (4):
Bluetooth: remove extra newline from debug output
Bluetooth: check L2CAP length in first ACL fragment
Bluetooth: check for l2cap header in start fragment
Bluetooth: clean up rfcomm code
David Vrabel (2):
Bluetooth: HCI devices are either BR/EDR or AMP radios
Bluetooth: Support SDIO devices that are AMP controllers
Gustavo F. Padovan (4):
Bluetooth: remove unused variable from cmtp
Bluetooth: make batostr() print in the right order
Bluetooth: Use the proper error value from bt_skb_send_alloc()
Bluetooth: update MAINTAINERS for Bluetooth subsys
Haijun Liu (1):
Bluetooth: Update conf_state before send config_req out
Johan Hedberg (1):
Bluetooth: Don't clear the blacklist when closing the HCI device
Karl Beldan (1):
Bluetooth: hci_uart: Fix typo in stats for sco tx
Mat Martineau (4):
Bluetooth: Validate PSM values in calls to connect() and bind()
Bluetooth: Add common code for stream-oriented recvmsg()
Bluetooth: Use common SOCK_STREAM receive code in RFCOMM
Bluetooth: Use a stream-oriented recvmsg with SOCK_STREAM L2CAP sockets.
Nobuhiro Iwamatsu (2):
Bluetooth: Add support Bluetooth controller of MacbookPro 6,2
Bluetooth: Add support Bluetooth controller of MacbookPro 7,1
Yuri Kululin (1):
Bluetooth: Fix RFCOMM RPN negotiation
MAINTAINERS | 5 ++-
drivers/bluetooth/btmrvl_main.c | 4 +-
drivers/bluetooth/btsdio.c | 8 +++
drivers/bluetooth/btusb.c | 6 ++
drivers/bluetooth/hci_ldisc.c | 2 +-
include/linux/mmc/sdio_ids.h | 1 +
include/net/bluetooth/bluetooth.h | 2 +
include/net/bluetooth/hci.h | 2 +-
include/net/bluetooth/rfcomm.h | 5 --
net/bluetooth/af_bluetooth.c | 109 +++++++++++++++++++++++++++++++++++++
net/bluetooth/cmtp/core.c | 6 +--
net/bluetooth/hci_core.c | 1 -
net/bluetooth/hci_sysfs.c | 21 ++-----
net/bluetooth/hidp/core.c | 8 +--
net/bluetooth/l2cap.c | 56 ++++++++++++++++---
net/bluetooth/lib.c | 4 +-
net/bluetooth/rfcomm/core.c | 39 +++++++-------
net/bluetooth/rfcomm/sock.c | 104 ++---------------------------------
net/bluetooth/rfcomm/tty.c | 4 +-
19 files changed, 218 insertions(+), 169 deletions(-)
--
Gustavo F. Padovan
ProFUSION embedded systems - http://profusion.mobi
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: pull request: bluetooth-next-2.6 2010-10-13
2010-10-13 3:48 pull request: bluetooth-next-2.6 2010-10-13 Gustavo F. Padovan
@ 2010-10-13 21:41 ` Luis R. Rodriguez
2010-10-13 22:01 ` Gustavo F. Padovan
2010-10-15 20:04 ` John W. Linville
1 sibling, 1 reply; 4+ messages in thread
From: Luis R. Rodriguez @ 2010-10-13 21:41 UTC (permalink / raw)
To: Gustavo F. Padovan
Cc: linville, marcel, linux-wireless, linux-bluetooth, linux-kernel
On Tue, Oct 12, 2010 at 8:48 PM, Gustavo F. Padovan
<padovan@profusion.mobi> wrote:
> One notable change is in the MAINTAINERS file, From now and on I'm going
> to maintain the Bluetooth trees as well as send the pull requests to you.
I noted here you mentioned "as well", does this mean there may be
updates from two people now instead of just one?
> Despite this maintenance change, Marcel will remain helping with patch
> review, and ACK/NAK in the Bluetooth subsystem as he always did. Not a
> big change in the end. ;)
Luis
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: pull request: bluetooth-next-2.6 2010-10-13
2010-10-13 21:41 ` Luis R. Rodriguez
@ 2010-10-13 22:01 ` Gustavo F. Padovan
0 siblings, 0 replies; 4+ messages in thread
From: Gustavo F. Padovan @ 2010-10-13 22:01 UTC (permalink / raw)
To: Luis R. Rodriguez
Cc: linville, marcel, linux-wireless, linux-bluetooth, linux-kernel
Hi Luis,
* Luis R. Rodriguez <mcgrof@gmail.com> [2010-10-13 14:41:24 -0700]:
> On Tue, Oct 12, 2010 at 8:48 PM, Gustavo F. Padovan
> <padovan@profusion.mobi> wrote:
> > One notable change is in the MAINTAINERS file, From now and on I'm going
> > to maintain the Bluetooth trees as well as send the pull requests to you.
>
> I noted here you mentioned "as well", does this mean there may be
> updates from two people now instead of just one?
No, updates are coming only from me. You misunderstood it due to my poor
English. I'm going to maitain the trees and send the pull requests.
That's what I said. Sorry, for the bad English. ;)
--
Gustavo F. Padovan
ProFUSION embedded systems - http://profusion.mobi
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: pull request: bluetooth-next-2.6 2010-10-13
2010-10-13 3:48 pull request: bluetooth-next-2.6 2010-10-13 Gustavo F. Padovan
2010-10-13 21:41 ` Luis R. Rodriguez
@ 2010-10-15 20:04 ` John W. Linville
1 sibling, 0 replies; 4+ messages in thread
From: John W. Linville @ 2010-10-15 20:04 UTC (permalink / raw)
To: Gustavo F. Padovan; +Cc: marcel, linux-wireless, linux-bluetooth
On Wed, Oct 13, 2010 at 12:48:08AM -0300, Gustavo F. Padovan wrote:
> Hi John,
>
> Here goes the Bluetooth patches for the next merge window. In this
> patchset we have a new stream-oriented recvmsg() which is used in L2CAP
> and RFCOMM. Support for two new MacBookPro devices. A buffer overflow
> check for L2CAP to prevent frames exceeding the receiving MTU. All the
> rest are simple bugfixes. No big features this time.
>
> One notable change is in the MAINTAINERS file, From now and on I'm going
> to maintain the Bluetooth trees as well as send the pull requests to you.
> Despite this maintenance change, Marcel will remain helping with patch
> review, and ACK/NAK in the Bluetooth subsystem as he always did. Not a
> big change in the end. ;)
>
> Thanks,
>
> The following changes since commit 29b4433d991c88d86ca48a4c1cc33c671475be4b:
>
> net: percpu net_device refcount (2010-10-12 12:35:25 -0700)
>
> are available in the git repository at:
> git://git.kernel.org/pub/scm/linux/kernel/git/padovan/bluetooth-next-2.6.git master
Pulled, thanks -- I plan to send a pull request to Dave later today.
John
--
John W. Linville Someday the world will need a hero, and you
linville@tuxdriver.com might be all we have. Be ready.
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2010-10-15 20:15 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-10-13 3:48 pull request: bluetooth-next-2.6 2010-10-13 Gustavo F. Padovan
2010-10-13 21:41 ` Luis R. Rodriguez
2010-10-13 22:01 ` Gustavo F. Padovan
2010-10-15 20:04 ` John W. Linville
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).