1. 06 1月, 2018 2 次提交
  2. 03 1月, 2018 3 次提交
    • M
      net: tcp: Remove TCP probe module · 6987990c
      Masami Hiramatsu 提交于
      Remove TCP probe module since jprobe has been deprecated.
      That function is now replaced by tcp/tcp_probe trace-event.
      You can use it via ftrace or perftools.
      Signed-off-by: NMasami Hiramatsu <mhiramat@kernel.org>
      Signed-off-by: NDavid S. Miller <davem@davemloft.net>
      6987990c
    • M
      net: tcp: Add trace events for TCP congestion window tracing · c3fde1bd
      Masami Hiramatsu 提交于
      This adds an event to trace TCP stat variables with
      slightly intrusive trace-event. This uses ftrace/perf
      event log buffer to trace those state, no needs to
      prepare own ring-buffer, nor custom user apps.
      
      User can use ftrace to trace this event as below;
      
        # cd /sys/kernel/debug/tracing
        # echo 1 > events/tcp/tcp_probe/enable
        (run workloads)
        # cat trace
      Signed-off-by: NMasami Hiramatsu <mhiramat@kernel.org>
      Signed-off-by: NDavid S. Miller <davem@davemloft.net>
      c3fde1bd
    • K
      inet_diag: Add equal-operator for ports · bbb6189d
      Kristian Evensen 提交于
      inet_diag currently provides less/greater than or equal operators for
      comparing ports when filtering sockets. An equal comparison can be
      performed by combining the two existing operators, or a user can for
      example request a port range and then do the final filtering in
      userspace. However, these approaches both have drawbacks. Implementing
      equal using LE/GE causes the size and complexity of a filter to grow
      quickly as the number of ports increase, while it on busy machines would
      be great if the kernel only returns information about relevant sockets.
      
      This patch introduces source and destination port equal operators.
      INET_DIAG_BC_S_EQ is used to match a source port, INET_DIAG_BC_D_EQ a
      destination port, and usage is the same as for the existing port
      operators.  I.e., the port to match is stored in the no-member of the
      next inet_diag_bc_op-struct in the filter.
      Signed-off-by: NKristian Evensen <kristian.evensen@gmail.com>
      Signed-off-by: NDavid S. Miller <davem@davemloft.net>
      bbb6189d
  3. 28 12月, 2017 3 次提交
  4. 27 12月, 2017 2 次提交
  5. 21 12月, 2017 5 次提交
  6. 20 12月, 2017 5 次提交
  7. 19 12月, 2017 3 次提交
  8. 16 12月, 2017 3 次提交
  9. 14 12月, 2017 7 次提交
  10. 13 12月, 2017 1 次提交
  11. 12 12月, 2017 4 次提交
  12. 09 12月, 2017 2 次提交