All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v9 0/9] Request for inclusion: per-cgroup tcp memory pressure controls
@ 2011-12-12  7:47 ` Glauber Costa
  0 siblings, 0 replies; 63+ messages in thread
From: Glauber Costa @ 2011-12-12  7:47 UTC (permalink / raw)
  To: davem
  Cc: linux-kernel, paul, lizf, kamezawa.hiroyu, ebiederm, gthelen,
	netdev, linux-mm, kirill, avagin, devel, eric.dumazet, cgroups

Hi,

This series fixes all the few comments raised in the last round,
and seem to have acquired consensus from the memcg side.

Dave, do you think it is acceptable now from the networking PoV?
In case positive, would you prefer merging this trough your tree,
or acking this so a cgroup maintainer can do it?


Thanks

Glauber Costa (9):
  Basic kernel memory functionality for the Memory Controller
  foundations of per-cgroup memory pressure controlling.
  socket: initial cgroup code.
  tcp memory pressure controls
  per-netns ipv4 sysctl_tcp_mem
  tcp buffer limitation: per-cgroup limit
  Display current tcp memory allocation in kmem cgroup
  Display current tcp failcnt in kmem cgroup
  Display maximum tcp memory allocation in kmem cgroup

 Documentation/cgroups/memory.txt |   46 ++++++-
 include/linux/memcontrol.h       |   23 ++++
 include/net/netns/ipv4.h         |    1 +
 include/net/sock.h               |  244 +++++++++++++++++++++++++++++++++-
 include/net/tcp.h                |    4 +-
 include/net/tcp_memcontrol.h     |   19 +++
 init/Kconfig                     |   11 ++
 mm/memcontrol.c                  |  191 +++++++++++++++++++++++++-
 net/core/sock.c                  |  112 ++++++++++++----
 net/ipv4/Makefile                |    1 +
 net/ipv4/af_inet.c               |    2 +
 net/ipv4/proc.c                  |    6 +-
 net/ipv4/sysctl_net_ipv4.c       |   65 ++++++++-
 net/ipv4/tcp.c                   |   11 +--
 net/ipv4/tcp_input.c             |   12 +-
 net/ipv4/tcp_ipv4.c              |   14 ++-
 net/ipv4/tcp_memcontrol.c        |  272 ++++++++++++++++++++++++++++++++++++++
 net/ipv4/tcp_output.c            |    2 +-
 net/ipv4/tcp_timer.c             |    2 +-
 net/ipv6/af_inet6.c              |    2 +
 net/ipv6/tcp_ipv6.c              |    8 +-
 21 files changed, 973 insertions(+), 75 deletions(-)
 create mode 100644 include/net/tcp_memcontrol.h
 create mode 100644 net/ipv4/tcp_memcontrol.c

-- 
1.7.6.4


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

end of thread, other threads:[~2011-12-23  8:58 UTC | newest]

Thread overview: 63+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-12-12  7:47 [PATCH v9 0/9] Request for inclusion: per-cgroup tcp memory pressure controls Glauber Costa
2011-12-12  7:47 ` Glauber Costa
2011-12-12  7:47 ` [PATCH v9 1/9] Basic kernel memory functionality for the Memory Controller Glauber Costa
2011-12-12  7:47   ` Glauber Costa
2011-12-14 17:04   ` Michal Hocko
2011-12-14 17:04     ` Michal Hocko
2011-12-15 12:29     ` Glauber Costa
2011-12-15 12:29       ` Glauber Costa
2011-12-15 12:29       ` Glauber Costa
2011-12-15 12:29       ` Glauber Costa
2011-12-16 12:32       ` Michal Hocko
2011-12-16 12:32         ` Michal Hocko
2011-12-16 13:02         ` Glauber Costa
2011-12-16 13:02           ` Glauber Costa
2011-12-16 13:02           ` Glauber Costa
2011-12-16 13:30           ` Michal Hocko
2011-12-16 13:30             ` Michal Hocko
2011-12-16 13:30             ` Michal Hocko
2011-12-16  6:20   ` Greg Thelen
2011-12-16  6:20     ` Greg Thelen
2011-12-16  6:20     ` Greg Thelen
2011-12-12  7:47 ` [PATCH v9 2/9] foundations of per-cgroup memory pressure controlling Glauber Costa
2011-12-12  7:47   ` Glauber Costa
2011-12-12  7:47 ` [PATCH v9 3/9] socket: initial cgroup code Glauber Costa
2011-12-12  7:47   ` Glauber Costa
2011-12-22 21:10   ` Jason Baron
2011-12-22 21:10     ` Jason Baron
2011-12-23  8:57     ` Glauber Costa
2011-12-23  8:57       ` Glauber Costa
2011-12-23  8:57       ` Glauber Costa
2011-12-12  7:47 ` [PATCH v9 4/9] tcp memory pressure controls Glauber Costa
2011-12-12  7:47   ` Glauber Costa
2011-12-12  7:47 ` [PATCH v9 5/9] per-netns ipv4 sysctl_tcp_mem Glauber Costa
2011-12-12  7:47   ` Glauber Costa
2011-12-12  7:47 ` [PATCH v9 6/9] tcp buffer limitation: per-cgroup limit Glauber Costa
2011-12-12  7:47   ` Glauber Costa
2011-12-12  7:47 ` [PATCH v9 7/9] Display current tcp memory allocation in kmem cgroup Glauber Costa
2011-12-12  7:47   ` Glauber Costa
2011-12-12  7:47 ` [PATCH v9 8/9] Display current tcp failcnt " Glauber Costa
2011-12-12  7:47   ` Glauber Costa
2011-12-12  7:47 ` [PATCH v9 9/9] Display maximum tcp memory allocation " Glauber Costa
2011-12-12  7:47   ` Glauber Costa
2011-12-13  0:07 ` [PATCH v9 0/9] Request for inclusion: per-cgroup tcp memory pressure controls David Miller
2011-12-13  0:07   ` David Miller
2011-12-13 13:49   ` Christoph Paasch
2011-12-13 13:49     ` Christoph Paasch
2011-12-13 13:49     ` Christoph Paasch
2011-12-13 13:59     ` Eric Dumazet
2011-12-13 13:59       ` Eric Dumazet
2011-12-13 13:59       ` Eric Dumazet
2011-12-13 18:45       ` David Miller
2011-12-13 18:45         ` David Miller
2011-12-13 20:11       ` Glauber Costa
2011-12-13 20:11         ` Glauber Costa
2011-12-13 20:11         ` Glauber Costa
2011-12-15  5:40 ` KAMEZAWA Hiroyuki
2011-12-15  5:40   ` KAMEZAWA Hiroyuki
2011-12-15  5:40   ` KAMEZAWA Hiroyuki
2011-12-15  5:48   ` David Miller
2011-12-15  5:48     ` David Miller
2011-12-15  6:48     ` Glauber Costa
2011-12-15  6:48       ` Glauber Costa
2011-12-15  6:48       ` Glauber Costa

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.