All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH net-next 0/9] Minor SCTP cleanups all over the place
@ 2013-04-16 21:07 ` Daniel Borkmann
  0 siblings, 0 replies; 68+ messages in thread
From: Daniel Borkmann @ 2013-04-16 21:07 UTC (permalink / raw)
  To: davem; +Cc: netdev, linux-sctp

That's a batch of cleanups for the SCTP protocol. Probably all
deadly boring and trivial patches, but it always bugs me. :-) I
guess this is still from the very SCTP beginning in Linux. Well,
at least we can now remove 41 lines of code in total. lksctp-tools
test suite run through without problems.

Daniel Borkmann (9):
  net: sctp: sctp_ssnmap: remove 'malloced' element from struct
  net: sctp: sctp_inq: remove dead code
  net: sctp: sctp_outq: remove 'malloced' from its struct
  net: sctp: sctp_outq: consolidate chars into bitfield
  net: sctp: outqueue: simplify sctp_outq_uncork function
  net: sctp: sctp_transport: remove unused variable
  net: sctp: sctp_bind_addr: remove dead code
  net: sctp: sctp_ulpq: remove 'malloced' struct member
  net: sctp: sctp_ulpq: do not use char as a struct member

 include/net/sctp/structs.h  | 24 ++++--------------------
 include/net/sctp/ulpqueue.h |  3 +--
 net/sctp/bind_addr.c        |  7 -------
 net/sctp/inqueue.c          |  7 -------
 net/sctp/outqueue.c         | 11 ++---------
 net/sctp/ssnmap.c           | 23 ++++++++++++-----------
 net/sctp/transport.c        |  1 -
 net/sctp/ulpqueue.c         |  3 ---
 8 files changed, 19 insertions(+), 60 deletions(-)

-- 
1.7.11.7


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

end of thread, other threads:[~2013-04-17 19:19 UTC | newest]

Thread overview: 68+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-04-16 21:07 [PATCH net-next 0/9] Minor SCTP cleanups all over the place Daniel Borkmann
2013-04-16 21:07 ` Daniel Borkmann
2013-04-16 21:07 ` [PATCH net-next 1/9] net: sctp: sctp_ssnmap: remove 'malloced' element from struct Daniel Borkmann
2013-04-16 21:07   ` Daniel Borkmann
2013-04-17 12:45   ` Neil Horman
2013-04-17 12:45     ` Neil Horman
2013-04-17 12:52     ` Daniel Borkmann
2013-04-17 12:52       ` Daniel Borkmann
2013-04-17 17:17       ` Daniel Borkmann
2013-04-17 17:17         ` Daniel Borkmann
2013-04-17 19:18         ` Neil Horman
2013-04-17 19:18           ` Neil Horman
2013-04-16 21:07 ` [PATCH net-next 2/9] net: sctp: sctp_inq: remove dead code Daniel Borkmann
2013-04-16 21:07   ` Daniel Borkmann
2013-04-17 12:47   ` Neil Horman
2013-04-17 12:47     ` Neil Horman
2013-04-16 21:07 ` [PATCH net-next 3/9] net: sctp: sctp_outq: remove 'malloced' from its struct Daniel Borkmann
2013-04-16 21:07   ` Daniel Borkmann
2013-04-17 12:57   ` Neil Horman
2013-04-17 12:57     ` Neil Horman
2013-04-16 21:07 ` [PATCH net-next 4/9] net: sctp: sctp_outq: consolidate chars into bitfield Daniel Borkmann
2013-04-16 21:07   ` Daniel Borkmann
2013-04-17  8:43   ` David Laight
2013-04-17  8:43     ` David Laight
2013-04-17  9:26     ` Daniel Borkmann
2013-04-17  9:26       ` Daniel Borkmann
2013-04-17 15:27       ` Neil Horman
2013-04-17 15:27         ` Neil Horman
2013-04-17 15:35         ` Vlad Yasevich
2013-04-17 15:35           ` Vlad Yasevich
2013-04-17 15:40           ` Neil Horman
2013-04-17 15:40             ` Neil Horman
2013-04-17 15:38         ` Daniel Borkmann
2013-04-17 15:38           ` Daniel Borkmann
2013-04-17 15:44       ` Vlad Yasevich
2013-04-17 15:44         ` Vlad Yasevich
2013-04-17 15:31   ` Neil Horman
2013-04-17 15:31     ` Neil Horman
2013-04-16 21:07 ` [PATCH net-next 5/9] net: sctp: outqueue: simplify sctp_outq_uncork function Daniel Borkmann
2013-04-16 21:07   ` Daniel Borkmann
2013-04-17 15:32   ` Neil Horman
2013-04-17 15:32     ` Neil Horman
2013-04-16 21:07 ` [PATCH net-next 6/9] net: sctp: sctp_transport: remove unused variable Daniel Borkmann
2013-04-16 21:07   ` Daniel Borkmann
2013-04-17 15:34   ` Neil Horman
2013-04-17 15:34     ` Neil Horman
2013-04-16 21:07 ` [PATCH net-next 7/9] net: sctp: sctp_bind_addr: remove dead code Daniel Borkmann
2013-04-16 21:07   ` Daniel Borkmann
2013-04-17 15:35   ` Neil Horman
2013-04-17 15:35     ` Neil Horman
2013-04-16 21:07 ` [PATCH net-next 8/9] net: sctp: sctp_ulpq: remove 'malloced' struct member Daniel Borkmann
2013-04-16 21:07   ` Daniel Borkmann
2013-04-17 15:46   ` Neil Horman
2013-04-17 15:46     ` Neil Horman
2013-04-16 21:07 ` [PATCH net-next 9/9] net: sctp: sctp_ulpq: do not use char as a " Daniel Borkmann
2013-04-16 21:07   ` Daniel Borkmann
2013-04-17 15:36   ` Vlad Yasevich
2013-04-17 15:36     ` Vlad Yasevich
2013-04-17 15:41     ` Daniel Borkmann
2013-04-17 15:41       ` Daniel Borkmann
2013-04-17 15:45   ` Neil Horman
2013-04-17 15:45     ` Neil Horman
2013-04-17 16:28     ` David Laight
2013-04-17 16:28       ` David Laight
2013-04-17 18:13 ` [PATCH net-next 0/9] Minor SCTP cleanups all over the place David Miller
2013-04-17 18:13   ` David Miller
2013-04-17 18:55   ` Daniel Borkmann
2013-04-17 18:55     ` Daniel Borkmann

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.