03 Jul, 2013

1 commit

  • libata/for-3.10-fixes never got submitted during v3.10 cycle. Merge
    it into for-3.11 so that it can be routed together with other changes
    scheduled for v3.11.

    Three trivial conflicts in drivers/ata/sata_rcar.c. All are caused by
    1b20f6a9ad ("sata_rcar: add 'base' local variable to some functions")
    conflicting with logic updates in for-3.10-fixes. The offending
    commit simply adds local variable @base on functions which
    dereferences sata_rcar_priv->base multiple times. The resolutions are
    trivial - applying s/priv->base/base/ in the conflicting logic
    updates.

    Signed-off-by: Tejun Heo

    Tejun Heo
     

25 Jun, 2013

2 commits

  • ahci_hardreset() and ahci_p5wdh_hardreset() use bare numbers for the
    BSY bit of the ATA status register, despite it's #define'd in
    .

    Signed-off-by: Sergei Shtylyov
    Signed-off-by: Tejun Heo

    Sergei Shtylyov
     
  • There are some SATA controllers which have both devices 0 and 1 but this module
    just zeroes out taskfile and sets then ATA_TFLAG_DEVICE (not sure that's needed)
    which could lead to a wrong device being selected just before issuing command.
    Thus we should call ata_tf_init() which sets up the device register value
    properly, like all other users of ata_exec_internal() do...

    Signed-off-by: Sergei Shtylyov
    Signed-off-by: Tejun Heo
    Cc: stable@vger.kernel.org

    Sergei Shtylyov
     

22 Jun, 2013

2 commits


19 Jun, 2013

1 commit

  • - Remove duplicate Medium Error Entry.

    - Fix translations to match SAT2 translation table.

    - Remove warning messages when translation is not found when decoding
    error or status register.

    - Goes through status register decoding when only ABRT bit is set in
    error register.

    Tested: When a disk fails, it sets

    Status = 0x71 [DRDY DF ERR] , Error = 0x4 [ABRT]

    This patch will make the sense key HARDWARE_ERROR instead.

    When there is a simple command syntax error:

    Status = 0x51 [DRDY ERR] , Error = 0x4 [ABRT]

    The sense key remains ABORTED_COMMAND.

    tj: Some updates to the description and comments.

    Signed-off-by: Gwendal Grignou
    Signed-off-by: Tejun Heo

    Gwendal Grignou
     

18 Jun, 2013

1 commit

  • This patch adds the compatible string of the exynos5440 sata controller
    compliant with the ahci 1.3 and sata 3.0 specification.

    changes in v2:
    changed the compatible string by adding the actual IP
    owners name instead of the SoC vendor name.

    Signed-off-by: Girish K S
    Signed-off-by: Tejun Heo

    Girish K S
     

11 Jun, 2013

1 commit

  • For some reason, a lot of port-multipliers have issues with softreset.
    SIMG [34]7x series port-multipliers have been quite erratic in this
    regard. I recall that it was better with some firmware revisions and
    the current list of quirks worked fine for a while. I think it got
    worse with later firmwares or maybe my test coverage wasn't good
    enough. Anyways, HPA is reporting that his 3726 setup suffers SRST
    failures and then the PMP gets confused and fails to probe the last
    port.

    The hope was that we try to stick to the standard as much as possible
    and soonish the PMPs and their firmwares will improve in quality, so
    the quirk list was kept to minimum. Well, it seems like that's never
    gonna happen.

    Let's set NO_SRST for all [34]7x PMPs so that whatever remaining
    userbase of the device suffer the least. Maybe we should do the same
    for 57xx's but unfortunately I don't have any device left to test and
    I'm not even sure 57xx's have ever been made widely available, so
    let's leave those alone for now.

    Signed-off-by: Tejun Heo
    Reported-by: "H. Peter Anvin"
    Cc: stable@vger.kernel.org

    Tejun Heo
     

10 Jun, 2013

1 commit

  • ata_link_online() check in ahci_error_intr() is unnecessary, it should
    be removed otherwise may lead to lockup with FBS enabled PMP.
    http://marc.info/?l=linux-ide&m=137050421603272&w=2

    Reported-by: Yu Liu
    Signed-off-by: Shane Huang
    Signed-off-by: Tejun Heo
    Cc: stable@vger.kernel.org

    Shane Huang
     

07 Jun, 2013

2 commits


04 Jun, 2013

2 commits


03 Jun, 2013

1 commit

  • Use the wrapper function for getting the driver data using pci_dev
    instead of using dev_get_drvdata() with &pdev->dev, so we can directly
    pass a struct pci_dev. This is a purely cosmetic change.

    Signed-off-by: Jingoo Han
    Signed-off-by: Tejun Heo

    Jingoo Han
     

02 Jun, 2013

2 commits

  • The 'ctl' field of the 'struct ata_taskfile' is not really dual purpose, i.e.
    it is not intended for storing the alternate status register (which is mapped
    at the same address in the legacy IDE controllers) in the qc_fill_rtf() method.
    No other 'libata' driver except 'drivers/scsi/ipr.c' stores the alternate status
    register's value in the 'ctl' field of 'qc->result_tf', hence this driver should
    not do this as well...

    Signed-off-by: Sergei Shtylyov
    Acked-by: Brian King
    Signed-off-by: Tejun Heo

    Sergei Shtylyov
     
  • The driver's interrupt handling code is too picky in deciding whether it should
    handle an interrupt or not which causes completely unneeded spurious interrupts.
    Thus make sata_rcar_{ata|serr}_interrupt() *void*; add ATA status register read
    to sata_rcar_ata_interrupt() to clear an unexpected ATA interrupt -- it doesn't
    get cleared by writing to the SATAINTSTAT register in the interrupt mode we use.

    Also, in sata_rcar_ata_interrupt() we should check SATAINTSTAT register only for
    enabled interrupts and we should clear only those interrupts that we have read
    as active first time around, because else we have a race and risk clearing an
    interrupt that can occur between read and write of the SATAINTSTAT register
    and never registering it...

    Signed-off-by: Sergei Shtylyov
    Signed-off-by: Tejun Heo
    Cc: stable@vger.kernel.org

    Sergei Shtylyov
     

29 May, 2013

1 commit


28 May, 2013

3 commits

  • The 'base' field of 'struct sata_rcar_priv' is used very often
    throughout the driver, so it seems worth loading it into a local
    variable if it's used more than once in a function.

    While at it, put some unitialized variables after intialized ones for
    aesthetic reasons. :-)

    Signed-off-by: Sergei Shtylyov
    Signed-off-by: Tejun Heo

    Sergei Shtylyov
     
  • Using ATA_BMDMA_SHT() to intialize 'sata_rcar_sht' was suboptimal as
    the R-Car descriptor table transfer counter is 28 bits wide (bit 1 to
    bit 28), so that the 'dma_boundary' field of 0xFFFF is just too small,
    as well as the 'sg_tablesize' field of 128. Use ATA_BASE_SHT() to
    initialize 'sata_rcar_sht' instead and give proper values to the
    'dma_boundary' and 'sg_tablesize' fields explicitly.

    Signed-off-by: Sergei Shtylyov
    Signed-off-by: Tejun Heo

    Sergei Shtylyov
     
  • I've modified sata_rcar_bmdma_fill_sg() to take care of splitting long
    scatter/ gather segments due to the descriptor table transfer counter
    being only 28 bits wide (bit 1 to bit 28) but that was in vain as even
    if 'sata_rcar_sht' specified a correct 'dma_boundary' field, the DMA
    and block layers would have split the S/G segments on the necassary
    boundaries. Since the driver uses ATA_BMDMA_SHT() to initilaize
    'sata_rcar_sht', the boundary is much smaller, only 0xFFFF, so the
    code I've added is even more useless, and it's better to just remove
    it.

    Signed-off-by: Sergei Shtylyov
    Signed-off-by: Tejun Heo

    Sergei Shtylyov
     

24 May, 2013

2 commits

  • The motivation for this is to allow the driver to be
    used with the r8a7790 SoC.

    I believe that rather than adding another SoC to the list of allowed SoCs
    it is better to simply remove the dependency of the driver on shmobile all
    together.

    Signed-off-by: Simon Horman
    Signed-off-by: Tejun Heo

    Simon Horman
     
  • Use the wrapper functions for getting and setting the driver data using
    platform_device instead of using dev_{get,set}_drvdata() with &pdev->dev,
    so we can directly pass a struct platform_device.

    Also, unnecessary dev_set_drvdata() is removed, because the driver core
    clears the driver data to NULL after device_release or on probe failure.

    Signed-off-by: Jingoo Han
    Signed-off-by: Tejun Heo

    Jingoo Han
     

22 May, 2013

4 commits

  • Currently all interrupts assigned to AHCI ports show up in
    '/proc/interrupts' as 'ahci'. This fix adds port numbers as
    suffixes and hence makes the descriptions distinct.

    Reported-by: Jan Beulich
    Signed-off-by: Alexander Gordeev
    Signed-off-by: Tejun Heo

    Alexander Gordeev
     
  • Iff bmdma_setup() has to stop a DMA transfer before starting a new
    one, then the STOP bit in the ATAPI_CONTROL1 register will remain set
    (it's only cleared when setting the START bit to 1) and then
    bmdma_start() method will set both START and STOP bits simultaneously
    which should abort the transfer being just started. Avoid that by
    explicitly clearing the STOP bit in bmdma_start() method (in this case
    it will be ignored on write).

    Signed-off-by: Sergei Shtylyov
    Signed-off-by: Tejun Heo
    Cc: stable@vger.kernel.org

    Sergei Shtylyov
     
  • Some device require DMADIR to be enabled, but are not detected as such
    by atapi_id_dmadir. One such example is "Asus Serillel 2"
    SATA-host-to-PATA-device bridge: the bridge itself requires DMADIR,
    even if the bridged device does not.

    As atapi_dmadir module parameter can cause problems with some devices
    (as per Tejun Heo's memory), enabling it globally may not be possible
    depending on the hardware.

    This patch adds atapi_dmadir in the form of a "force" horkage value,
    allowing global, per-bus and per-device control.

    Signed-off-by: Vincent Pelletier
    Signed-off-by: Tejun Heo

    Vincent Pelletier
     
  • libata honors DMADIR for regular commands, but not for internal commands
    used (among other) during device initialisation.

    This makes SATA-host-to-PATA-device bridges based on Silicon Image SiL3611
    (such as "Abit Serillel 2") end up disabled when used with an ATAPI device
    after a few tries.

    Log output of the bridge being hot-plugged with an ATAPI drive:

    [ 9631.212901] ata1: exception Emask 0x10 SAct 0x0 SErr 0x40c0000 action 0xe frozen
    [ 9631.212913] ata1: irq_stat 0x00000040, connection status changed
    [ 9631.212923] ata1: SError: { CommWake 10B8B DevExch }
    [ 9631.212939] ata1: hard resetting link
    [ 9632.104962] ata1: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
    [ 9632.106393] ata1.00: ATAPI: PIONEER DVD-RW DVR-115, 1.06, max UDMA/33
    [ 9632.106407] ata1.00: applying bridge limits
    [ 9632.108151] ata1.00: configured for UDMA/33
    [ 9637.105303] ata1.00: qc timeout (cmd 0xa0)
    [ 9637.105324] ata1.00: failed to clear UNIT ATTENTION (err_mask=0x5)
    [ 9637.105335] ata1: hard resetting link
    [ 9638.044599] ata1: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
    [ 9638.047878] ata1.00: configured for UDMA/33
    [ 9643.044933] ata1.00: qc timeout (cmd 0xa0)
    [ 9643.044953] ata1.00: failed to clear UNIT ATTENTION (err_mask=0x5)
    [ 9643.044963] ata1: limiting SATA link speed to 1.5 Gbps
    [ 9643.044971] ata1.00: limiting speed to UDMA/33:PIO3
    [ 9643.044979] ata1: hard resetting link
    [ 9643.984225] ata1: SATA link up 1.5 Gbps (SStatus 113 SControl 310)
    [ 9643.987471] ata1.00: configured for UDMA/33
    [ 9648.984591] ata1.00: qc timeout (cmd 0xa0)
    [ 9648.984612] ata1.00: failed to clear UNIT ATTENTION (err_mask=0x5)
    [ 9648.984619] ata1.00: disabled
    [ 9649.000593] ata1: hard resetting link
    [ 9649.939902] ata1: SATA link up 1.5 Gbps (SStatus 113 SControl 310)
    [ 9649.955864] ata1: EH complete

    With this patch, the drive enumerates correctly when libata is loaded with
    atapi_dmadir=1:

    [ 9891.810863] ata1: exception Emask 0x10 SAct 0x0 SErr 0x40c0000 action 0xe frozen
    [ 9891.810874] ata1: irq_stat 0x00000040, connection status changed
    [ 9891.810884] ata1: SError: { CommWake 10B8B DevExch }
    [ 9891.810900] ata1: hard resetting link
    [ 9892.762105] ata1: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
    [ 9892.763544] ata1.00: ATAPI: PIONEER DVD-RW DVR-115, 1.06, max UDMA/33, DMADIR
    [ 9892.763558] ata1.00: applying bridge limits
    [ 9892.765393] ata1.00: configured for UDMA/33
    [ 9892.786063] ata1: EH complete
    [ 9892.792062] scsi 0:0:0:0: CD-ROM PIONEER DVD-RW DVR-115 1.06 PQ: 0 ANSI: 5
    [ 9892.798455] sr2: scsi3-mmc drive: 12x/12x writer dvd-ram cd/rw xa/form2 cdda tray
    [ 9892.798837] sr 0:0:0:0: Attached scsi CD-ROM sr2
    [ 9892.799109] sr 0:0:0:0: Attached scsi generic sg6 type 5

    Based on a patch by Csaba Halász on linux-ide:
    http://marc.info/?l=linux-ide&m=136121147832295&w=2

    tj: minor formatting changes.

    Signed-off-by: Vincent Pelletier
    Signed-off-by: Tejun Heo
    Cc: stable@vger.kernel.org

    Vincent Pelletier
     

17 May, 2013

1 commit


15 May, 2013

2 commits

  • While registering host controller track port number based upon number
    of ports available on the controller, export port_no attribute through
    /sys. This patch is needed by udev for composing persistent links in
    /dev/disk/by-path.

    /sys/devices/pci0000:00/0000:00:1f.2/ata8/ata_port/ata8
    total 0
    lrwxrwxrwx. 1 root root 0 Mar 6 12:43 device -> ../../../ata8
    -r--r--r--. 1 root root 4096 Mar 6 12:43 idle_irq
    -r--r--r--. 1 root root 4096 Mar 6 12:43 nr_pmp_links
    -r--r--r--. 1 root root 4096 Mar 6 12:43 port_no
    drwxr-xr-x. 2 root root 0 Mar 6 12:42 power
    lrwxrwxrwx. 1 root root 0 Mar 6 12:41 subsystem -> ../../../../../../class/ata_port
    -rw-r--r--. 1 root root 4096 Mar 6 12:40 uevent
    1

    Signed-off-by: David Milburn
    Signed-off-by: Tejun Heo

    David Milburn
     
  • Jeff moved on to a greener pasture.

    s/Maintained by: Jeff Garzik/Maintained by: Tejun Heo/g

    Signed-off-by: Tejun Heo
    Cc: Jeff Garzik

    Tejun Heo
     

12 May, 2013

6 commits

  • Linus Torvalds
     
  • Pull tracing/kprobes update from Steven Rostedt:
    "The majority of these changes are from Masami Hiramatsu bringing
    kprobes up to par with the latest changes to ftrace (multi buffering
    and the new function probes).

    He also discovered and fixed some bugs in doing so. When pulling in
    his patches, I also found a few minor bugs as well and fixed them.

    This also includes a compile fix for some archs that select the ring
    buffer but not tracing.

    I based this off of the last patch you took from me that fixed the
    merge conflict error, as that was the commit that had all the changes
    I needed for this set of changes."

    * tag 'trace-fixes-v3.10' of git://git.kernel.org/pub/scm/linux/kernel/git/rostedt/linux-trace:
    tracing/kprobes: Support soft-mode disabling
    tracing/kprobes: Support ftrace_event_file base multibuffer
    tracing/kprobes: Pass trace_probe directly from dispatcher
    tracing/kprobes: Increment probe hit-count even if it is used by perf
    tracing/kprobes: Use bool for retprobe checker
    ftrace: Fix function probe when more than one probe is added
    ftrace: Fix the output of enabled_functions debug file
    ftrace: Fix locking in register_ftrace_function_probe()
    tracing: Add helper function trace_create_new_event() to remove duplicate code
    tracing: Modify soft-mode only if there's no other referrer
    tracing: Indicate enabled soft-mode in enable file
    tracing/kprobes: Fix to increment return event probe hit-count
    ftrace: Cleanup regex_lock and ftrace_lock around hash updating
    ftrace, kprobes: Fix a deadlock on ftrace_regex_lock
    ftrace: Have ftrace_regex_write() return either read or error
    tracing: Return error if register_ftrace_function_probe() fails for event_enable_func()
    tracing: Don't succeed if event_enable_func did not register anything
    ring-buffer: Select IRQ_WORK

    Linus Torvalds
     
  • …nux/kernel/git/konrad/xen

    Pull Xen bug-fixes from Konrad Rzeszutek Wilk:
    - More fixes in the vCPU PVHVM hotplug path.
    - Add more documentation.
    - Fix various ARM related issues in the Xen generic drivers.
    - Updates in the xen-pciback driver per Bjorn's updates.
    - Mask the x2APIC feature for PV guests.

    * tag 'stable/for-linus-3.10-rc0-tag-two' of git://git.kernel.org/pub/scm/linux/kernel/git/konrad/xen:
    xen/pci: Used cached MSI-X capability offset
    xen/pci: Use PCI_MSIX_TABLE_BIR, not PCI_MSIX_FLAGS_BIRMASK
    xen: clear IRQ_NOAUTOEN and IRQ_NOREQUEST
    xen: mask x2APIC feature in PV
    xen: SWIOTLB is only used on x86
    xen/spinlock: Fix check from greater than to be also be greater or equal to.
    xen/smp/pvhvm: Don't point per_cpu(xen_vpcu, 33 and larger) to shared_info
    xen/vcpu: Document the xen_vcpu_info and xen_vcpu
    xen/vcpu/pvhvm: Fix vcpu hotplugging hanging.

    Linus Torvalds
     
  • Pull second SCSI update from James "Jaj B" Bottomley:
    "This is the final round of SCSI patches for the merge window. It
    consists mostly of driver updates (bnx2fc, ibmfc, fnic, lpfc,
    be2iscsi, pm80xx, qla4x and ipr).

    There's also the power management updates that complete the patches in
    Jens' tree, an iscsi refcounting problem fix from the last pull, some
    dif handling in scsi_debug fixes, a few nice code cleanups and an
    error handling busy bug fix."

    * tag 'scsi-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi: (92 commits)
    [SCSI] qla2xxx: Update firmware link in Kconfig file.
    [SCSI] iscsi class, qla4xxx: fix sess/conn refcounting when find fns are used
    [SCSI] sas: unify the pointlessly separated enums sas_dev_type and sas_device_type
    [SCSI] pm80xx: thermal, sas controller config and error handling update
    [SCSI] pm80xx: NCQ error handling changes
    [SCSI] pm80xx: WWN Modification for PM8081/88/89 controllers
    [SCSI] pm80xx: Changed module name and debug messages update
    [SCSI] pm80xx: Firmware flash memory free fix, with addition of new memory region for it
    [SCSI] pm80xx: SPC new firmware changes for device id 0x8081 alone
    [SCSI] pm80xx: Added SPCv/ve specific hardware functionalities and relevant changes in common files
    [SCSI] pm80xx: MSI-X implementation for using 64 interrupts
    [SCSI] pm80xx: Updated common functions common for SPC and SPCv/ve
    [SCSI] pm80xx: Multiple inbound/outbound queue configuration
    [SCSI] pm80xx: Added SPCv/ve specific ids, variables and modify for SPC
    [SCSI] lpfc: fix up Kconfig dependencies
    [SCSI] Handle MLQUEUE busy response in scsi_send_eh_cmnd
    [SCSI] sd: change to auto suspend mode
    [SCSI] sd: use REQ_PM in sd's runtime suspend operation
    [SCSI] qla4xxx: Fix iocb_cnt calculation in qla4xxx_send_mbox_iocb()
    [SCSI] ufs: Correct the expected data transfersize
    ...

    Linus Torvalds
     
  • Pull idle update from Len Brown:
    "Add support for new Haswell-ULT CPU idle power states"

    * 'release' of git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux:
    intel_idle: initial C8, C9, C10 support
    tools/power turbostat: display C8, C9, C10 residency

    Linus Torvalds
     
  • Pull audit changes from Eric Paris:
    "Al used to send pull requests every couple of years but he told me to
    just start pushing them to you directly.

    Our touching outside of core audit code is pretty straight forward. A
    couple of interface changes which hit net/. A simple argument bug
    calling audit functions in namei.c and the removal of some assembly
    branch prediction code on ppc"

    * git://git.infradead.org/users/eparis/audit: (31 commits)
    audit: fix message spacing printing auid
    Revert "audit: move kaudit thread start from auditd registration to kaudit init"
    audit: vfs: fix audit_inode call in O_CREAT case of do_last
    audit: Make testing for a valid loginuid explicit.
    audit: fix event coverage of AUDIT_ANOM_LINK
    audit: use spin_lock in audit_receive_msg to process tty logging
    audit: do not needlessly take a lock in tty_audit_exit
    audit: do not needlessly take a spinlock in copy_signal
    audit: add an option to control logging of passwords with pam_tty_audit
    audit: use spin_lock_irqsave/restore in audit tty code
    helper for some session id stuff
    audit: use a consistent audit helper to log lsm information
    audit: push loginuid and sessionid processing down
    audit: stop pushing loginid, uid, sessionid as arguments
    audit: remove the old depricated kernel interface
    audit: make validity checking generic
    audit: allow checking the type of audit message in the user filter
    audit: fix build break when AUDIT_DEBUG == 2
    audit: remove duplicate export of audit_enabled
    Audit: do not print error when LSMs disabled
    ...

    Linus Torvalds
     

11 May, 2013

5 commits

  • Pull nfsd fixes from Bruce Fields:
    "Small fixes for two bugs and two warnings"

    * 'for-3.10' of git://linux-nfs.org/~bfields/linux:
    nfsd: fix oops when legacy_recdir_name_error is passed a -ENOENT error
    SUNRPC: fix decoding of optional gss-proxy xdr fields
    SUNRPC: Refactor gssx_dec_option_array() to kill uninitialized warning
    nfsd4: don't allow owner override on 4.1 CLAIM_FH opens

    Linus Torvalds
     
  • Pull x86 platform drivers from Matthew Garrett:
    "Small set of updates, mainly trivial bugfixes and some small updates
    to deal with newer hardware.

    There's also a new driver that allows qemu guests to notify the
    hypervisor that they've just paniced, which seems useful."

    * 'for_linus' of git://cavan.codon.org.uk/platform-drivers-x86:
    Add support for fan button on Ideapad Z580
    pvpanic: pvpanic device driver
    asus-nb-wmi: set wapf=4 for ASUSTeK COMPUTER INC. X75A
    drivers: platform: x86: Use PTR_RET function
    sony-laptop: SVS151290S kbd backlight and gfx switch support
    hp-wmi: add more definitions for new event_id's
    dell-laptop: Fix krealloc() misuse in parse_da_table()
    hp_accel: Ignore the error from lis3lv02d_poweron() at resume
    dell: add new dell WMI format for the AIO machines

    Linus Torvalds
     
  • Pull stray syscall bits from Al Viro:
    "Several syscall-related commits that were missing from the original"

    * 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/viro/signal:
    switch compat_sys_sysctl to COMPAT_SYSCALL_DEFINE
    unicore32: just use mmap_pgoff()...
    unify compat fanotify_mark(2), switch to COMPAT_SYSCALL_DEFINE
    x86, vm86: fix VM86 syscalls: use SYSCALL_DEFINEx(...)

    Linus Torvalds
     
  • …ernel/git/tyhicks/ecryptfs

    Pull eCryptfs update from Tyler Hicks:
    "Improve performance when AES-NI (and most likely other crypto
    accelerators) is available by moving to the ablkcipher crypto API.
    The improvement is more apparent on faster storage devices.

    There's no noticeable change when hardware crypto is not available"

    * tag 'ecryptfs-3.10-rc1-ablkcipher' of git://git.kernel.org/pub/scm/linux/kernel/git/tyhicks/ecryptfs:
    eCryptfs: Use the ablkcipher crypto API

    Linus Torvalds
     
  • Pull misc fixes from David Woodhouse:
    "This is some miscellaneous cleanups that don't really belong anywhere
    else (or were ignored), that have been sitting in linux-next for some
    time. Two of them are fixes resulting from my audit of krealloc()
    usage that don't seem to have elicited any response when I posted
    them, and the other three are patches from Artem removing dead code."

    * tag 'for-linus-20130509' of git://git.infradead.org/~dwmw2/random-2.6:
    pcmcia: remove RPX board stuff
    m68k: remove rpxlite stuff
    pcmcia: remove Motorola MBX860 support
    params: Fix potential memory leak in add_sysfs_param()
    dell-laptop: Fix krealloc() misuse in parse_da_table()

    Linus Torvalds