“2d2481ddf634695aa17ad91bd765572329941674”上不存在“tools/git@gitcode.net:openeuler/kernel.git”
  1. 10 3月, 2013 3 次提交
  2. 08 3月, 2013 1 次提交
  3. 28 2月, 2013 1 次提交
    • S
      hlist: drop the node parameter from iterators · b67bfe0d
      Sasha Levin 提交于
      I'm not sure why, but the hlist for each entry iterators were conceived
      
              list_for_each_entry(pos, head, member)
      
      The hlist ones were greedy and wanted an extra parameter:
      
              hlist_for_each_entry(tpos, pos, head, member)
      
      Why did they need an extra pos parameter? I'm not quite sure. Not only
      they don't really need it, it also prevents the iterator from looking
      exactly like the list iterator, which is unfortunate.
      
      Besides the semantic patch, there was some manual work required:
      
       - Fix up the actual hlist iterators in linux/list.h
       - Fix up the declaration of other iterators based on the hlist ones.
       - A very small amount of places were using the 'node' parameter, this
       was modified to use 'obj->member' instead.
       - Coccinelle didn't handle the hlist_for_each_entry_safe iterator
       properly, so those had to be fixed up manually.
      
      The semantic patch which is mostly the work of Peter Senna Tschudin is here:
      
      @@
      iterator name hlist_for_each_entry, hlist_for_each_entry_continue, hlist_for_each_entry_from, hlist_for_each_entry_rcu, hlist_for_each_entry_rcu_bh, hlist_for_each_entry_continue_rcu_bh, for_each_busy_worker, ax25_uid_for_each, ax25_for_each, inet_bind_bucket_for_each, sctp_for_each_hentry, sk_for_each, sk_for_each_rcu, sk_for_each_from, sk_for_each_safe, sk_for_each_bound, hlist_for_each_entry_safe, hlist_for_each_entry_continue_rcu, nr_neigh_for_each, nr_neigh_for_each_safe, nr_node_for_each, nr_node_for_each_safe, for_each_gfn_indirect_valid_sp, for_each_gfn_sp, for_each_host;
      
      type T;
      expression a,c,d,e;
      identifier b;
      statement S;
      @@
      
      -T b;
          <+... when != b
      (
      hlist_for_each_entry(a,
      - b,
      c, d) S
      |
      hlist_for_each_entry_continue(a,
      - b,
      c) S
      |
      hlist_for_each_entry_from(a,
      - b,
      c) S
      |
      hlist_for_each_entry_rcu(a,
      - b,
      c, d) S
      |
      hlist_for_each_entry_rcu_bh(a,
      - b,
      c, d) S
      |
      hlist_for_each_entry_continue_rcu_bh(a,
      - b,
      c) S
      |
      for_each_busy_worker(a, c,
      - b,
      d) S
      |
      ax25_uid_for_each(a,
      - b,
      c) S
      |
      ax25_for_each(a,
      - b,
      c) S
      |
      inet_bind_bucket_for_each(a,
      - b,
      c) S
      |
      sctp_for_each_hentry(a,
      - b,
      c) S
      |
      sk_for_each(a,
      - b,
      c) S
      |
      sk_for_each_rcu(a,
      - b,
      c) S
      |
      sk_for_each_from
      -(a, b)
      +(a)
      S
      + sk_for_each_from(a) S
      |
      sk_for_each_safe(a,
      - b,
      c, d) S
      |
      sk_for_each_bound(a,
      - b,
      c) S
      |
      hlist_for_each_entry_safe(a,
      - b,
      c, d, e) S
      |
      hlist_for_each_entry_continue_rcu(a,
      - b,
      c) S
      |
      nr_neigh_for_each(a,
      - b,
      c) S
      |
      nr_neigh_for_each_safe(a,
      - b,
      c, d) S
      |
      nr_node_for_each(a,
      - b,
      c) S
      |
      nr_node_for_each_safe(a,
      - b,
      c, d) S
      |
      - for_each_gfn_sp(a, c, d, b) S
      + for_each_gfn_sp(a, c, d) S
      |
      - for_each_gfn_indirect_valid_sp(a, c, d, b) S
      + for_each_gfn_indirect_valid_sp(a, c, d) S
      |
      for_each_host(a,
      - b,
      c) S
      |
      for_each_host_safe(a,
      - b,
      c, d) S
      |
      for_each_mesh_entry(a,
      - b,
      c, d) S
      )
          ...+>
      
      [akpm@linux-foundation.org: drop bogus change from net/ipv4/raw.c]
      [akpm@linux-foundation.org: drop bogus hunk from net/ipv6/raw.c]
      [akpm@linux-foundation.org: checkpatch fixes]
      [akpm@linux-foundation.org: fix warnings]
      [akpm@linux-foudnation.org: redo intrusive kvm changes]
      Tested-by: NPeter Senna Tschudin <peter.senna@gmail.com>
      Acked-by: NPaul E. McKenney <paulmck@linux.vnet.ibm.com>
      Signed-off-by: NSasha Levin <sasha.levin@oracle.com>
      Cc: Wu Fengguang <fengguang.wu@intel.com>
      Cc: Marcelo Tosatti <mtosatti@redhat.com>
      Cc: Gleb Natapov <gleb@redhat.com>
      Signed-off-by: NAndrew Morton <akpm@linux-foundation.org>
      Signed-off-by: NLinus Torvalds <torvalds@linux-foundation.org>
      b67bfe0d
  4. 22 2月, 2013 3 次提交
  5. 19 2月, 2013 6 次提交
  6. 14 2月, 2013 1 次提交
  7. 11 2月, 2013 9 次提交
  8. 09 2月, 2013 1 次提交
  9. 07 2月, 2013 1 次提交
  10. 05 2月, 2013 2 次提交
  11. 03 2月, 2013 1 次提交
  12. 31 1月, 2013 8 次提交
  13. 27 1月, 2013 3 次提交
    • J
      7a8feb42
    • J
      qlcnic: add support for FDB netdevice ops. · fe1adc6b
      Jitendra Kalsaria 提交于
      Providing communication channel between KVM and e-Switch so that it
      can be informed when hypervisor configures a MAC address and VLAN.
      
      qlcnic_mac_learn module param usage will be changed to:
      	0 = MAC learning is disable
      	1 = Driver learning is enable
      	2 = FDB learning is enable
      Signed-off-by: NJitendra Kalsaria <jitendra.kalsaria@qlogic.com>
      Signed-off-by: NDavid S. Miller <davem@davemloft.net>
      fe1adc6b
    • J
      qlcnic: sleeping function called from invalid context · 1d9219dd
      Jitendra Kalsaria 提交于
      device eth0 entered promiscuous mode
      BUG: sleeping function called from invalid context at mm/slub.c:930
      in_atomic(): 1, irqs_disabled(): 0, pid: 5911, name: brctl
      INFO: lockdep is turned off.
      Pid: 5911, comm: brctl Tainted: GF       W  O 3.6.0-0.rc7.git1.4.fc18.x86_64 #1
      Call Trace:
      [<ffffffff810a29ca>] __might_sleep+0x18a/0x240
      [<ffffffff811b5d77>] __kmalloc+0x67/0x2d0
      [<ffffffffa00a61a9>] ? qlcnic_alloc_lb_filters_mem+0x59/0xa0 [qlcnic]
      [<ffffffffa00a61a9>] qlcnic_alloc_lb_filters_mem+0x59/0xa0 [qlcnic]
      [<ffffffffa009e1c1>] qlcnic_set_multi+0x81/0x100 [qlcnic]
      [<ffffffff8159cccf>] __dev_set_rx_mode+0x5f/0xb0
      [<ffffffff8159cd4f>] dev_set_rx_mode+0x2f/0x50
      [<ffffffff8159d00c>] dev_set_promiscuity+0x3c/0x50
      [<ffffffffa05ed728>] br_add_if+0x1e8/0x400 [bridge]
      [<ffffffffa05ee2df>] add_del_if+0x5f/0x90 [bridge]
      [<ffffffffa05eee0b>] br_dev_ioctl+0x4b/0x90 [bridge]
      [<ffffffff8159d613>] dev_ifsioc+0x373/0x3b0
      [<ffffffff8159d78f>] dev_ioctl+0x13f/0x860
      [<ffffffff812dd6e1>] ? avc_has_perm_flags+0x31/0x2c0
      [<ffffffff8157c18d>] sock_do_ioctl+0x5d/0x70
      [<ffffffff8157c21d>] sock_ioctl+0x7d/0x2c0
      [<ffffffff812df922>] ? inode_has_perm.isra.48.constprop.61+0x62/0xa0
      [<ffffffff811e4979>] do_vfs_ioctl+0x99/0x5a0
      [<ffffffff812df9f7>] ? file_has_perm+0x97/0xb0
      [<ffffffff810d716d>] ? trace_hardirqs_on+0xd/0x10
      [<ffffffff811e4f19>] sys_ioctl+0x99/0xa0
      [<ffffffff816e7369>] system_call_fastpath+0x16/0x1b
      br0: port 1(eth0) entered forwarding state
      br0: port 1(eth0) entered forwarding state
      Signed-off-by: NJitendra Kalsaria <jitendra.kalsaria@qlogic.com>
      Signed-off-by: NDavid S. Miller <davem@davemloft.net>
      1d9219dd