1. 20 11月, 2008 9 次提交
  2. 19 11月, 2008 7 次提交
  3. 18 11月, 2008 21 次提交
  4. 17 11月, 2008 3 次提交
    • L
      Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-2.6 · 9753b127
      Linus Torvalds 提交于
      * git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-2.6:
        rtc: rtc-sun4v fixes, revised
        sparc: Fix tty compile warnings.
        sparc: struct device - replace bus_id with dev_name(), dev_set_name()
      9753b127
    • L
      Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-2.6 · 847e9170
      Linus Torvalds 提交于
      * git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-2.6: (27 commits)
        rtnetlink: propagate error from dev_change_flags in do_setlink()
        isdn: remove extra byteswap in isdn_net_ciscohdlck_slarp_send_reply
        Phonet: refuse to send bigger than MTU packets
        e1000e: fix IPMI traffic
        e1000e: fix warn_on reload after phy_id error
        phy: fix phy address bug
        e100: fix dma error in direction for mapping
        igb: use dev_printk instead of printk
        qla3xxx: Cleanup: Fix link print statements.
        igb: Use device_set_wakeup_enable
        e1000: Use device_set_wakeup_enable
        e1000e: Use device_set_wakeup_enable
        via-velocity: enable perfect filtering for multicast packets
        phy: Add support for Marvell 88E1118 PHY
        mlx4_en: Pause parameters per port
        phylib: fix premature freeing of struct mii_bus
        atl1: Do not enumerate options unsupported by chip
        atl1e: fix broken multicast by removing unnecessary crc inversion
        gianfar: Fix DMA unmap invocations
        net/ucc_geth: Fix oops in uec_get_ethtool_stats()
        ...
      847e9170
    • O
      sched, signals: fix the racy usage of ->signal in account_group_xxx/run_posix_cpu_timers · ad133ba3
      Oleg Nesterov 提交于
      Impact: fix potential NULL dereference
      
      Contrary to ad474cac changelog, other
      acct_group_xxx() helpers can be called after exit_notify() by timer tick.
      Thanks to Roland for pointing out this. Somehow I missed this simple fact
      when I read the original patch, and I am afraid I confused Frank during
      the discussion. Sorry.
      
      Fortunately, these helpers work with current, we can check ->exit_state
      to ensure that ->signal can't go away under us.
      
      Also, add the comment and compiler barrier to account_group_exec_runtime(),
      to make sure we load ->signal only once.
      Signed-off-by: NOleg Nesterov <oleg@redhat.com>
      Signed-off-by: NIngo Molnar <mingo@elte.hu>
      ad133ba3