* [GIT] [3.10] NFC pull request
@ 2013-03-08 11:44 Samuel Ortiz
2013-03-08 17:21 ` [linux-nfc] " Samuel Ortiz
0 siblings, 1 reply; 3+ messages in thread
From: Samuel Ortiz @ 2013-03-08 11:44 UTC (permalink / raw)
To: John W. Linville; +Cc: Linux Wireless, Linux NFC
Hi John,
This is the first NFC pull request for 3.10.
The 2 features we have with this one are:
- An LLCP Service Name Lookup (SNL) netlink interface for querying LLCP
service availability from user space.
Along the way, Thierry also improved the existing SNL interface for
aggregating SNL responses.
- An initial LLCP socket options implementation, for setting the Receive
Window (RW) and the Maximum Information Unit Extension (MIUX) per socket.
This is need for the LLCP validation tests.
We also have a microread MEI build failure here: I am not sending this one to
3.9 because the MEI bus code is not there yet, so it won't break for anyone
else than me.
Thanks in advance for pulling those changes in.
The following changes since commit cd48d8ba149484c4723a2b75159deeb83f3d2273:
NFC: microread: Fix mei physical layer (2013-02-11 18:35:36 +0100)
are available in the git repository at:
git://git.kernel.org/pub/scm/linux/kernel/git/sameo/nfc-next.git tags/nfc-next-3.10-1
for you to fetch changes up to ec97c981a6760f85543520fef40bfde32fe82b4a:
NFC: llcp: Add cleanup support for unreplied SNL requests (2013-03-07 20:11:12 +0100)
----------------------------------------------------------------
Samuel Ortiz (5):
NFC: microread: Fix MEI build failure
NFC: llcp: Rename socket rw and miu fields
NFC: llcp: Implement socket options
NFC: llcp: Use socket specific link parameters before the local ones
NFC: llcp: Remove redundant printk
Thierry Escande (4):
NFC: Add missing type policies for netlink attributes
NFC: llcp: Service Name Lookup SDRES aggregation
NFC: llcp: Service Name Lookup netlink interface
NFC: llcp: Add cleanup support for unreplied SNL requests
drivers/nfc/microread/mei.c | 2 +-
include/linux/socket.h | 1 +
include/uapi/linux/nfc.h | 16 ++++
net/nfc/llcp/commands.c | 205 +++++++++++++++++++++++++++++++++++--------
net/nfc/llcp/llcp.c | 114 +++++++++++++++++++++---
net/nfc/llcp/llcp.h | 36 +++++++-
net/nfc/llcp/sock.c | 130 +++++++++++++++++++++++++--
net/nfc/netlink.c | 172 ++++++++++++++++++++++++++++++++++++
net/nfc/nfc.h | 14 +++
9 files changed, 636 insertions(+), 54 deletions(-)
--
Intel Open Source Technology Centre
http://oss.intel.com/
^ permalink raw reply [flat|nested] 3+ messages in thread* Re: [linux-nfc] [GIT] [3.10] NFC pull request
2013-03-08 11:44 [GIT] [3.10] NFC pull request Samuel Ortiz
@ 2013-03-08 17:21 ` Samuel Ortiz
0 siblings, 0 replies; 3+ messages in thread
From: Samuel Ortiz @ 2013-03-08 17:21 UTC (permalink / raw)
To: John W. Linville; +Cc: Linux Wireless, Linux NFC
Hi John,
On Fri, Mar 08, 2013 at 12:44:06PM +0100, Samuel Ortiz wrote:
> Hi John,
>
> This is the first NFC pull request for 3.10.
After pulling this one on top of your current tree, I just realized that it
fails to build due to the hlist changes (dropping the node parameters from
iterarors).
I'll rebase my changes on top of your HEAD and re-send a pull request, sorry.
Cheers,
Samuel.
--
Intel Open Source Technology Centre
http://oss.intel.com/
^ permalink raw reply [flat|nested] 3+ messages in thread
* [GIT] [3.10] NFC pull request
@ 2013-04-26 14:21 Samuel Ortiz
2013-04-26 23:18 ` [linux-nfc] " Samuel Ortiz
0 siblings, 1 reply; 3+ messages in thread
From: Samuel Ortiz @ 2013-04-26 14:21 UTC (permalink / raw)
To: John W. Linville; +Cc: Linux NFC, Linux Wireless
Hi John,
Another NFC pull request for 3.10, in order to address Dave's request for
cleaning the LLCP Makefile up. If it's too late for the 3.10 merge window, or
if you want me to rebase this code on top of net-next and send the pull
request directly to Dave, please let me know.
Here it goes:
The following changes since commit b006ed545cbadf1ebd4683719554742d20dbcede:
mwifiex: rework round robin scheduling of bss nodes. (2013-04-23 15:18:40 -0400)
are available in the git repository at:
git://git.kernel.org/pub/scm/linux/kernel/git/sameo/nfc-next.git tags/nfc-next-3.10-3
for you to fetch changes up to 30cc4587659e1c9b1bfade8b2a757d91e04758ab:
NFC: Move LLCP code to the NFC top level diirectory (2013-04-26 12:37:28 +0200)
----------------------------------------------------------------
The last NFC pull request for 3.10:
This one only contains one patch for moving the LLCP code into net/nfc.
It fixes a build annoyance reported by Dave Miller caused by the fact
that the LLCP code object targets are not in the same directory as the
Makefile trying to build them is. It prevents us from doing e.g.
make net/nfc/llcp/sock.o
Moving the LLCP code into net/nfc and not making it optional anymore
makes sense as LLCP is a fundamental piece of the NFC specifications
and thus should be in the core NFC directory.
----------------------------------------------------------------
Samuel Ortiz (1):
NFC: Move LLCP code to the NFC top level diirectory
net/nfc/Kconfig | 1 -
net/nfc/Makefile | 6 ++-
net/nfc/{llcp => }/llcp.h | 0
net/nfc/llcp/Kconfig | 7 ---
net/nfc/{llcp/commands.c => llcp_commands.c} | 2 +-
net/nfc/{llcp/llcp.c => llcp_core.c} | 2 +-
net/nfc/{llcp/sock.c => llcp_sock.c} | 2 +-
net/nfc/netlink.c | 3 +-
net/nfc/nfc.h | 64 --------------------------
9 files changed, 8 insertions(+), 79 deletions(-)
rename net/nfc/{llcp => }/llcp.h (100%)
delete mode 100644 net/nfc/llcp/Kconfig
rename net/nfc/{llcp/commands.c => llcp_commands.c} (99%)
rename net/nfc/{llcp/llcp.c => llcp_core.c} (99%)
rename net/nfc/{llcp/sock.c => llcp_sock.c} (99%)
--
Intel Open Source Technology Centre
http://oss.intel.com/
^ permalink raw reply [flat|nested] 3+ messages in thread* Re: [linux-nfc] [GIT] [3.10] NFC pull request
2013-04-26 14:21 Samuel Ortiz
@ 2013-04-26 23:18 ` Samuel Ortiz
0 siblings, 0 replies; 3+ messages in thread
From: Samuel Ortiz @ 2013-04-26 23:18 UTC (permalink / raw)
To: John W. Linville; +Cc: Linux Wireless, Linux NFC
Hi John,
On Fri, Apr 26, 2013 at 04:21:06PM +0200, Samuel Ortiz wrote:
> Hi John,
>
> Another NFC pull request for 3.10,
Forget about this one, I'll send another one in a few minutes that includes
Marcel's fix for the RFKILL dependency.
Cheers,
Samuel.
--
Intel Open Source Technology Centre
http://oss.intel.com/
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2013-04-26 23:18 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-03-08 11:44 [GIT] [3.10] NFC pull request Samuel Ortiz
2013-03-08 17:21 ` [linux-nfc] " Samuel Ortiz
-- strict thread matches above, loose matches on Subject: below --
2013-04-26 14:21 Samuel Ortiz
2013-04-26 23:18 ` [linux-nfc] " Samuel Ortiz
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).