netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH net-next 00/26] tipc: Yet another mixed bag of updates
@ 2011-03-13 21:33 Paul Gortmaker
  2011-03-13 21:33 ` [PATCH net-next 01/26] tipc: Allow receiving into iovec containing multiple entries Paul Gortmaker
                   ` (26 more replies)
  0 siblings, 27 replies; 28+ messages in thread
From: Paul Gortmaker @ 2011-03-13 21:33 UTC (permalink / raw)
  To: davem; +Cc: netdev, Allan.Stephens, Paul Gortmaker

Content varies, from cleanups to bugfixes to removals of orphaned code.

In the new functionality department, there is the SO_RCVTIMEO sockopt
and the multi-chunk iovec changes that simply were not supported before.

In the removal dep't there were a couple more blocks relating to the
now-gone prototype routing that can also now be deleted.

Nobody likes Kconfig options for micro tuning anymore, so one of those
gets shot in the head, which triggered a bunch of associated cleanups,
like the killing off of a largely useless global structure.

The remainder are either bugfixes or cosmetic cleanups initiated by
the bugfix; with the usual intent of not mixing both types of content
within a single commit, so that review/inspection is hopefully easier.

Thanks,
Paul.

---

The following changes since commit bef55aebd560c5a6f8883c421abccee39978c58c:

  decnet: Convert to use flowidn where applicable. (2011-03-12 15:08:55 -0800)

are available in the git repository at:
  git://git.kernel.org/pub/scm/linux/kernel/git/paulg/net-next-2.6.git tipc-Mar13-2011


Allan Stephens (25):
  tipc: Allow receiving into iovec containing multiple entries
  tipc: Correct broadcast link peer info when displaying links
  tipc: Add network address mask helper routines
  tipc: Prevent null pointer error when removing a node subscription
  tipc: Cosmetic changes to node subscription code
  tipc: Add support for SO_RCVTIMEO socket option
  tipc: Fix problem with missing link in "tipc-config -l" output
  tipc: Split up unified structure of network-related variables
  tipc: Eliminate configuration for maximum number of cluster nodes
  tipc: Convert node object array to a hash table
  tipc: manually inline net_start/stop, make assoc. vars static
  tipc: Eliminate timestamp from link protocol messages
  tipc: make msg_set_redundant_link() consistent with other set ops
  tipc: Fix redundant link field handling in link protocol message
  tipc: Cosmetic changes to neighbor discovery logic
  tipc: Give Tx of discovery responses priority over link messages
  tipc: Optimizations to link creation code
  tipc: Correct misnamed references to neighbor discovery domain
  tipc: Remove unused field in bearer structure
  tipc: Eliminate unnecessary constant for neighbor discovery msg size
  tipc: Don't respond to neighbor discovery request on blocked bearer
  tipc: Remove bearer flag indicating existence of broadcast address
  tipc: Eliminate remaining support for routing table messages
  tipc: Eliminate obsolete routine for handling routed messages
  tipc: Update maintenance information

Paul Gortmaker (1):
  tipc: cosmetic - function names are not to be full sentences

 MAINTAINERS                 |    6 +--
 include/linux/tipc_config.h |    6 +-
 net/tipc/Kconfig            |   12 ----
 net/tipc/addr.c             |   15 ++----
 net/tipc/addr.h             |   17 +++++--
 net/tipc/bearer.c           |   18 +++----
 net/tipc/bearer.h           |    6 +--
 net/tipc/config.c           |   31 ++---------
 net/tipc/core.c             |    6 --
 net/tipc/core.h             |    1 -
 net/tipc/discover.c         |  103 +++++++++++++++++++++---------------
 net/tipc/link.c             |   50 ++++++++++-------
 net/tipc/link.h             |    3 +-
 net/tipc/msg.c              |   34 ------------
 net/tipc/msg.h              |   42 +--------------
 net/tipc/name_distr.c       |   18 +++---
 net/tipc/net.c              |   32 ++---------
 net/tipc/net.h              |   19 +------
 net/tipc/node.c             |  123 ++++++++++++++++++++-----------------------
 net/tipc/node.h             |   36 ++++++++-----
 net/tipc/node_subscr.c      |   21 +++++++-
 net/tipc/node_subscr.h      |    3 +-
 net/tipc/socket.c           |   70 +++++++++++-------------
 23 files changed, 278 insertions(+), 394 deletions(-)

-- 
1.7.3.3


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

end of thread, other threads:[~2011-03-14  1:52 UTC | newest]

Thread overview: 28+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-03-13 21:33 [PATCH net-next 00/26] tipc: Yet another mixed bag of updates Paul Gortmaker
2011-03-13 21:33 ` [PATCH net-next 01/26] tipc: Allow receiving into iovec containing multiple entries Paul Gortmaker
2011-03-13 21:33 ` [PATCH net-next 02/26] tipc: Correct broadcast link peer info when displaying links Paul Gortmaker
2011-03-13 21:33 ` [PATCH net-next 03/26] tipc: Add network address mask helper routines Paul Gortmaker
2011-03-13 21:33 ` [PATCH net-next 04/26] tipc: Prevent null pointer error when removing a node subscription Paul Gortmaker
2011-03-13 21:33 ` [PATCH net-next 05/26] tipc: Cosmetic changes to node subscription code Paul Gortmaker
2011-03-13 21:33 ` [PATCH net-next 06/26] tipc: Add support for SO_RCVTIMEO socket option Paul Gortmaker
2011-03-13 21:33 ` [PATCH net-next 07/26] tipc: Fix problem with missing link in "tipc-config -l" output Paul Gortmaker
2011-03-13 21:33 ` [PATCH net-next 08/26] tipc: Split up unified structure of network-related variables Paul Gortmaker
2011-03-13 21:33 ` [PATCH net-next 09/26] tipc: Eliminate configuration for maximum number of cluster nodes Paul Gortmaker
2011-03-13 21:33 ` [PATCH net-next 10/26] tipc: Convert node object array to a hash table Paul Gortmaker
2011-03-13 21:33 ` [PATCH net-next 11/26] tipc: manually inline net_start/stop, make assoc. vars static Paul Gortmaker
2011-03-13 21:34 ` [PATCH net-next 12/26] tipc: Eliminate timestamp from link protocol messages Paul Gortmaker
2011-03-13 21:34 ` [PATCH net-next 13/26] tipc: cosmetic - function names are not to be full sentences Paul Gortmaker
2011-03-13 21:34 ` [PATCH net-next 14/26] tipc: make msg_set_redundant_link() consistent with other set ops Paul Gortmaker
2011-03-13 21:34 ` [PATCH net-next 15/26] tipc: Fix redundant link field handling in link protocol message Paul Gortmaker
2011-03-13 21:34 ` [PATCH net-next 16/26] tipc: Cosmetic changes to neighbor discovery logic Paul Gortmaker
2011-03-13 21:34 ` [PATCH net-next 17/26] tipc: Give Tx of discovery responses priority over link messages Paul Gortmaker
2011-03-13 21:34 ` [PATCH net-next 18/26] tipc: Optimizations to link creation code Paul Gortmaker
2011-03-13 21:34 ` [PATCH net-next 19/26] tipc: Correct misnamed references to neighbor discovery domain Paul Gortmaker
2011-03-13 21:34 ` [PATCH net-next 20/26] tipc: Remove unused field in bearer structure Paul Gortmaker
2011-03-13 21:34 ` [PATCH net-next 21/26] tipc: Eliminate unnecessary constant for neighbor discovery msg size Paul Gortmaker
2011-03-13 21:34 ` [PATCH net-next 22/26] tipc: Don't respond to neighbor discovery request on blocked bearer Paul Gortmaker
2011-03-13 21:34 ` [PATCH net-next 23/26] tipc: Remove bearer flag indicating existence of broadcast address Paul Gortmaker
2011-03-13 21:34 ` [PATCH net-next 24/26] tipc: Eliminate remaining support for routing table messages Paul Gortmaker
2011-03-13 21:34 ` [PATCH net-next 25/26] tipc: Eliminate obsolete routine for handling routed messages Paul Gortmaker
2011-03-13 21:34 ` [PATCH net-next 26/26] tipc: Update maintenance information Paul Gortmaker
2011-03-14  1:53 ` [PATCH net-next 00/26] tipc: Yet another mixed bag of updates David Miller

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