1. 20 12月, 2012 1 次提交
    • V
      cxgb4: Add T4 filter support · f2b7e78d
      Vipul Pandya 提交于
      The T4 architecture is capable of filtering ingress packets at line rate
      using the rule in TCAM. If packet hits a rule in the TCAM then it can be either
      dropped or passed to the receive queues based on a rule settings.
      
      This patch adds framework for managing filters and to use T4's filter
      capabilities. It constructs a Firmware Filter Work Request which writes the
      filter at a specified index to get the work done. It hosts shadow copy of
      ingress filter entry to check field size limitations and save memory in the
      case where the filter table is large.
      Signed-off-by: NVipul Pandya <vipul@chelsio.com>
      Signed-off-by: NRoland Dreier <roland@purestorage.com>
      f2b7e78d
  2. 08 12月, 2012 1 次提交
  3. 04 12月, 2012 1 次提交
  4. 27 11月, 2012 1 次提交
  5. 03 11月, 2012 1 次提交
  6. 22 10月, 2012 1 次提交
  7. 09 10月, 2012 1 次提交
  8. 28 9月, 2012 4 次提交
  9. 08 9月, 2012 1 次提交
  10. 06 9月, 2012 1 次提交
  11. 24 8月, 2012 1 次提交
  12. 05 7月, 2012 1 次提交
  13. 19 5月, 2012 2 次提交
  14. 06 4月, 2012 1 次提交
    • S
      simple_open: automatically convert to simple_open() · 234e3405
      Stephen Boyd 提交于
      Many users of debugfs copy the implementation of default_open() when
      they want to support a custom read/write function op.  This leads to a
      proliferation of the default_open() implementation across the entire
      tree.
      
      Now that the common implementation has been consolidated into libfs we
      can replace all the users of this function with simple_open().
      
      This replacement was done with the following semantic patch:
      
      <smpl>
      @ open @
      identifier open_f != simple_open;
      identifier i, f;
      @@
      -int open_f(struct inode *i, struct file *f)
      -{
      (
      -if (i->i_private)
      -f->private_data = i->i_private;
      |
      -f->private_data = i->i_private;
      )
      -return 0;
      -}
      
      @ has_open depends on open @
      identifier fops;
      identifier open.open_f;
      @@
      struct file_operations fops = {
      ...
      -.open = open_f,
      +.open = simple_open,
      ...
      };
      </smpl>
      
      [akpm@linux-foundation.org: checkpatch fixes]
      Signed-off-by: NStephen Boyd <sboyd@codeaurora.org>
      Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
      Cc: Al Viro <viro@zeniv.linux.org.uk>
      Cc: Julia Lawall <Julia.Lawall@lip6.fr>
      Acked-by: NIngo Molnar <mingo@elte.hu>
      Signed-off-by: NAndrew Morton <akpm@linux-foundation.org>
      Signed-off-by: NLinus Torvalds <torvalds@linux-foundation.org>
      234e3405
  15. 07 3月, 2012 1 次提交
  16. 24 2月, 2012 1 次提交
  17. 06 1月, 2012 1 次提交
  18. 20 12月, 2011 1 次提交
  19. 17 12月, 2011 2 次提交
  20. 23 11月, 2011 1 次提交
  21. 17 11月, 2011 1 次提交
  22. 14 11月, 2011 1 次提交
  23. 17 9月, 2011 1 次提交
  24. 18 8月, 2011 1 次提交
  25. 11 8月, 2011 1 次提交
  26. 06 6月, 2011 1 次提交
  27. 30 4月, 2011 2 次提交
  28. 18 4月, 2011 1 次提交
  29. 09 4月, 2011 1 次提交
  30. 09 2月, 2011 1 次提交
  31. 21 1月, 2011 1 次提交
  32. 17 12月, 2010 3 次提交