netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v1 0/5] can: add SAE J1939 protocol
@ 2018-10-08  9:48 Oleksij Rempel
  2018-10-08  9:48 ` [PATCH v1 1/5] mailmap: update email address Oleksij Rempel
                   ` (5 more replies)
  0 siblings, 6 replies; 7+ messages in thread
From: Oleksij Rempel @ 2018-10-08  9:48 UTC (permalink / raw)
  To: dev.kurt, mkl, wg; +Cc: Oleksij Rempel, kernel, linux-can, netdev

This series adds SAE J1939 support to the current kernel v4.19-rc6.

This stack has long history, starting back in 27 Apr 2011, if not
earlier:
https://lists.openwall.net/netdev/2011/04/27/45

After major rework and testing it is a time to send it mainline.

Kurt Van Dijck (2):
  mailmap: update email address
  can: introduce REQUIRED_SIZE macro

Oleksij Rempel (2):
  can: add socket type for CAN_J1939
  can: extend sockaddr_can to include j1939 members

The j1939 authors (1):
  can: add support of SAE J1939 protocol.

 .mailmap                           |    1 +
 Documentation/networking/j1939.txt |  468 ++++++++++
 MAINTAINERS                        |   10 +
 include/linux/can/can-ml.h         |    3 +
 include/linux/can/core.h           |    8 +
 include/uapi/linux/can.h           |   20 +-
 include/uapi/linux/can/j1939.h     |   83 ++
 net/can/Kconfig                    |    2 +
 net/can/Makefile                   |    2 +
 net/can/bcm.c                      |    4 +-
 net/can/j1939/Kconfig              |   23 +
 net/can/j1939/Makefile             |   12 +
 net/can/j1939/address-claim.c      |  224 +++++
 net/can/j1939/bus.c                |  309 +++++++
 net/can/j1939/j1939-priv.h         |  176 ++++
 net/can/j1939/main.c               |  371 ++++++++
 net/can/j1939/socket.c             |  781 ++++++++++++++++
 net/can/j1939/transport.c          | 1333 ++++++++++++++++++++++++++++
 net/can/raw.c                      |    4 +-
 19 files changed, 3829 insertions(+), 5 deletions(-)
 create mode 100644 Documentation/networking/j1939.txt
 create mode 100644 include/uapi/linux/can/j1939.h
 create mode 100644 net/can/j1939/Kconfig
 create mode 100644 net/can/j1939/Makefile
 create mode 100644 net/can/j1939/address-claim.c
 create mode 100644 net/can/j1939/bus.c
 create mode 100644 net/can/j1939/j1939-priv.h
 create mode 100644 net/can/j1939/main.c
 create mode 100644 net/can/j1939/socket.c
 create mode 100644 net/can/j1939/transport.c

-- 
2.19.0

^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2018-10-30 23:48 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-10-08  9:48 [PATCH v1 0/5] can: add SAE J1939 protocol Oleksij Rempel
2018-10-08  9:48 ` [PATCH v1 1/5] mailmap: update email address Oleksij Rempel
2018-10-08  9:48 ` [PATCH v1 2/5] can: introduce REQUIRED_SIZE macro Oleksij Rempel
2018-10-08  9:48 ` [PATCH v1 3/5] can: add socket type for CAN_J1939 Oleksij Rempel
2018-10-08  9:48 ` [PATCH v1 4/5] can: extend sockaddr_can to include j1939 members Oleksij Rempel
2018-10-08  9:48 ` [PATCH v1 5/5] can: add support of SAE J1939 protocol Oleksij Rempel
2018-10-30 14:54 ` [PATCH v1 0/5] can: add " Marc Kleine-Budde

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).