1. 22 7月, 2006 14 次提交
  2. 18 7月, 2006 7 次提交
  3. 17 7月, 2006 4 次提交
  4. 16 7月, 2006 11 次提交
  5. 15 7月, 2006 4 次提交
    • L
      Merge master.kernel.org:/pub/scm/linux/kernel/git/herbert/crypto-2.6 · d6c93e1d
      Linus Torvalds 提交于
      * master.kernel.org:/pub/scm/linux/kernel/git/herbert/crypto-2.6:
        [CRYPTO] padlock: Fix alignment after aes_ctx rearrange
      d6c93e1d
    • L
      Merge master.kernel.org:/pub/scm/linux/kernel/git/davem/sparc-2.6 · 5694ca9f
      Linus Torvalds 提交于
      * master.kernel.org:/pub/scm/linux/kernel/git/davem/sparc-2.6:
        [SPARC64] Fix PSYCHO PCI controler init.
        [SPARC64] psycho: Fix pbm->name handling in pbm_register_toplevel_resources()
        [SERIAL] sunsab: Fix significant typo in sab_probe()
        [SERIAL] sunsu: Report keyboard and mouse ports in kernel log.
        [SPARC64]: Make sure IRQs are disabled properly during early boot.
      5694ca9f
    • L
      Merge master.kernel.org:/pub/scm/linux/kernel/git/davem/net-2.6 · 76aba64a
      Linus Torvalds 提交于
      * master.kernel.org:/pub/scm/linux/kernel/git/davem/net-2.6:
        [VLAN]: __vlan_hwaccel_rx can use the faster ether_compare_addr
        [PKT_SCHED] HTB: initialize upper bound properly
        [IPV4]: Clear skb cb on IP input
        [NET]: Update frag_list in pskb_trim
      76aba64a
    • S
      [PATCH] remove set_wmb - arch removal · 52393ccc
      Steven Rostedt 提交于
      set_wmb should not be used in the kernel because it just confuses the
      code more and has no benefit.  Since it is not currently used in the
      kernel this patch removes it so that new code does not include it.
      
      All archs define set_wmb(var, value) to do { var = value; wmb(); }
      while(0) except ia64 and sparc which use a mb() instead.  But this is
      still moot since it is not used anyway.
      
      Hasn't been tested on any archs but x86 and x86_64 (and only compiled
      tested)
      Signed-off-by: NSteven Rostedt <rostedt@goodmis.org>
      Signed-off-by: NLinus Torvalds <torvalds@osdl.org>
      52393ccc