22 Mar, 2011

14 commits


21 Mar, 2011

6 commits


20 Mar, 2011

13 commits


19 Mar, 2011

7 commits

  • Dmitry Torokhov
     
  • * 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/ryusuke/nilfs2:
    nilfs2: move NILFS_SUPER_MAGIC to linux/magic.h
    nilfs2: get rid of nilfs_sb_info structure
    nilfs2: use sb instance instead of nilfs_sb_info struct
    nilfs2: get rid of sc_sbi back pointer
    nilfs2: move log writer onto nilfs object
    nilfs2: move next generation counter into nilfs object
    nilfs2: move s_inode_lock and s_dirty_files into nilfs object
    nilfs2: move parameters on nilfs_sb_info into nilfs object
    nilfs2: move mount options to nilfs object
    nilfs2: record used amount of each checkpoint in checkpoint list
    nilfs2: optimize rec_len functions
    nilfs2: append blocksize info to warnings during loading super blocks
    nilfs2: add compat ioctl
    nilfs2: implement FS_IOC_GETFLAGS/SETFLAGS/GETVERSION
    nilfs2: tighten restrictions on inode flags
    nilfs2: mark S_NOATIME on inodes only if NOATIME attribute is set
    nilfs2: use common file attribute macros
    nilfs2: add free entries count only if clear bit operation succeeded
    nilfs2: decrement inodes count only if raw inode was successfully deleted

    Linus Torvalds
     
  • * 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/cjb/mmc: (53 commits)
    mmc: dw_mmc: support mmc power control with regulator
    mmc: dw_mmc: fix suspend/resume operation
    mmc: dw_mmc: add quirks for unreliable card detect, and capabilities
    mmc: tmio: fix address in kunmap_atomic() calls
    mmc: core: reset card voltage after power off
    mmc: core: export function mmc_do_release_host()
    mmc: sdio: remember new card RCA when redetecting card
    mmc: dw_mmc: Remove set-but-unused variable.
    mmc: sdhci-esdhc-imx: add card detect on custom GPIO for mx25/35
    mmc: sdhci-esdhc: broken card detection is not a default quirk
    mmc: sdhci-esdhc-imx: add write protect on custom GPIO on mx25/35
    mmc: msm_sdcc: remove needless cache flush after dma_unmap_sg()
    mmc: sh_mmcif: support aggressive clock gating
    mmc: check if mmc cards < 2GB do sector addressing
    mmc: core: comment on why sdio_reset is done at init time
    mmc: dw_mmc: support DDR mode
    mmc: via-sdmmc: Remove set-but-unused variable.
    mmc: cb710: Return err value in cb710_wait_while_busy()
    mmc: sdhci-pci: Remove set-but-unused variable.
    mmc: mxs-mmc: add mmc host driver for i.MX23/28
    ...

    Linus Torvalds
     
  • * 'pm-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/rafael/suspend-2.6:
    USB: Move runtime PM callbacks to usb_device_pm_ops

    Linus Torvalds
     
  • * 'fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/dhowells/linux-2.6-mn10300:
    MN10300: Clear ASB2364 peripheral interrupt masks before enabling interrupts
    MN10300: Fix the ASB2364 gdbport UART register defs
    MN10300: Fix ASB2364 FPGA register defs
    MN10300: Select GENERIC_HARDIRQS_NO_DEPRECATED
    MN10300: Select HAVE_GENERIC_HARDIRQS rather than GENERIC_HARDIRQS
    MN10300: Convert ASB2364 FPGA irq_chip to new functions
    MN10300: Convert ipi irq_chip to new functions
    MN10300: Convert serial irq_chip to new functions
    MN10300: Convert cpu irq_chips to new functions
    MN10300: Remove unused mn10300_intc_* functions
    MN10300: Remove stale irq_chip.end - V2
    MN10300: Use clockevents_calc_mult_shift()
    MN10300: Use clocksource_register_hz()
    MN10300: Remove stale code

    Linus Torvalds
     
  • * 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/vapier/blackfin: (32 commits)
    Blackfin: ip0x: fix unused variable warning
    Blackfin: punt unused HDMA masks
    Blackfin: wire up new syscalls
    Blackfin/ipipe: restore pipeline bits in irqflags
    Blackfin/ipipe: fix deferred pipeline sync for the root stage
    Blackfin/ipipe: upgrade to I-pipe mainline
    Blackfin: cpufreq: fix typos
    Blackfin: enable GENERIC_HARDIRQS_NO_DEPRECATED
    Blackfin: SMP: convert to irq chip functions
    Blackfin: use accessor functions in show_interrupts()
    Blackfin: use proper wrapper functions for modifying irq status
    Blackfin: convert gpio irq_chip to new functions
    Blackfin: convert mac irq_chip to new functions
    Blackfin: convert error irq_chip to new functions
    Blackfin: convert internal irq_chip to new functions
    Blackfin: convert core irq_chip to new functions
    Blackfin: use proper wrappers for irq_desc
    Blackfin: optimize startup code
    Blackfin: SMP: work around anomaly 05000491
    Blackfin: SMP: implement cpu_freq support
    ...

    Linus Torvalds
     
  • USB defines usb_device_type pointing to usb_device_pm_ops that
    provides system-wide PM callbacks only and usb_bus_type pointing to
    usb_bus_pm_ops that provides runtime PM callbacks only. However,
    the USB runtime PM callbacks may be defined in usb_device_pm_ops
    which makes it possible to drop usb_bus_pm_ops and will allow us
    to consolidate the handling of subsystems by the PM core code.

    Signed-off-by: Rafael J. Wysocki
    Acked-by: Greg Kroah-Hartman

    Rafael J. Wysocki