1. 23 5月, 2013 5 次提交
  2. 22 5月, 2013 2 次提交
  3. 20 5月, 2013 1 次提交
  4. 18 5月, 2013 1 次提交
    • M
      staging: dwc2: Fix dma-enabled platform devices using a default dma_mask · 642f2ecc
      Matthijs Kooijman 提交于
      Platform devices added through OF usually do not have any dma_mask
      pointer set. If the hardware advertises DMA support, the driver will
      expect DMA buffers to be passed in, but the USB core will not do this
      due to lack of a dma mask, breaking all connectiviy.
      
      To fix this, set a default dma_mask by pointing it at the
      coherent_dma_mask and set their value to a 32 bit mask. This still
      allows any platform code to set any more specific mask if needed, but
      makes the driver work for most dma-enabled hardware.
      
      It would be great if this patch could be included in 3.10, since it is
      needed to make the dwc2 driver work on the ralink rt3052 target.
      
      Before, the plan was to set up the dma mask in MIPS platform code, but
      because of a similar change in ehci and the uglyness of the code for
      that, the plan for that infrastructure was dropped. This patch makes the
      setting of the dma_mask happen in the same way as the patch Stephen
      Warren (set device dma_mask without reference to global data).
      Signed-off-by: NMatthijs Kooijman <matthijs@stdin.nl>
      Acked-by: NPaul Zimmerman <paulz@synopsys.com>
      Signed-off-by: NGreg Kroah-Hartman <gregkh@linuxfoundation.org>
      642f2ecc
  5. 17 5月, 2013 8 次提交
    • M
      staging: vt6656: [bug] Fix missing spin lock in iwctl_siwpower. · 91ec61f8
      Malcolm Priestley 提交于
      Fixes occasional dead lock on power up / down.
      
      spin_lock_irq is used because of unlocking with spin_unlock_irq
      elsewhere in the driver.
      
      Only relevant to kernels 3.8 and later when command was
      transferred to the iw_handler.
      Signed-off-by: NMalcolm Priestley <tvboxspy@gmail.com>
      Cc: stable@vger.kernel.org # 3.8+
      Signed-off-by: NGreg Kroah-Hartman <gregkh@linuxfoundation.org>
      91ec61f8
    • J
      staging: Swap zram and zsmalloc in Kconfig · 2ea86d5a
      Jean Delvare 提交于
      ZRAM support depends on ZSMALLOC so present ZSMALLOC to the user
      first.
      Signed-off-by: NJean Delvare <jdelvare@suse.de>
      Signed-off-by: NGreg Kroah-Hartman <gregkh@linuxfoundation.org>
      2ea86d5a
    • X
      staging: android: logger: use kuid_t instead of uid_t · bd471258
      Xiong Zhou 提交于
      Use kuid_t instead of uid_t, to pass the UIDGID_STRICT_TYPE_CHECKS.
      Signed-off-by: NXiong Zhou <jencce.kernel@gmail.com>
      Signed-off-by: NGreg Kroah-Hartman <gregkh@linuxfoundation.org>
      bd471258
    • G
      staging: zcache: Fix incorrect module_param_array types · 410b6372
      Geert Uytterhoeven 提交于
      drivers/staging/zcache/zcache-main.c: In function ‘__check_disable_cleancache’:
      drivers/staging/zcache/zcache-main.c:1928: warning: return from incompatible pointer type
      drivers/staging/zcache/zcache-main.c: In function ‘__check_disable_frontswap’:
      drivers/staging/zcache/zcache-main.c:1929: warning: return from incompatible pointer type
      drivers/staging/zcache/zcache-main.c: In function ‘__check_disable_frontswap_ignore_nonactive’:
      drivers/staging/zcache/zcache-main.c:1933: warning: return from incompatible pointer type
      Signed-off-by: NGeert Uytterhoeven <geert@linux-m68k.org>
      Signed-off-by: NGreg Kroah-Hartman <gregkh@linuxfoundation.org>
      410b6372
    • A
      staging/solo6x10: depend on CONFIG_FONTS · 8c090cfb
      Arnd Bergmann 提交于
      The new SOLO6X10 driver needs the built-in console fonts, specifically
      the VGA8x16 font and building it without console support results in
      a link error error.
      
      drivers/built-in.o: In function `solo_osd_print':
       :(.text+0x7d3424): undefined reference to `find_font'
      
      This adds a dependency on the CONFIG_FONTS symbol and changes the
      console code to always build the base driver even if there are
      no specific fonts built-in.
      
      Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
      Cc: Hans Verkuil <hans.verkuil@cisco.com>
      Cc: Mauro Carvalho Chehab <mchehab@infradead.org>
      Signed-off-by: NArnd Bergmann <arnd@arndb.de>
      Signed-off-by: NGreg Kroah-Hartman <gregkh@linuxfoundation.org>
      8c090cfb
    • A
      staging/drm: imx: add missing dependencies · fcce7680
      Arnd Bergmann 提交于
      The imx DRM driver needs a couple of extra Kconfig dependencies
      to avoid random build failures:
      
      drivers/staging/imx-drm/ipuv3-crtc.c:448:
       undefined reference to `ipu_idmac_put'
       drivers/staging/imx-drm/ipuv3-crtc.c:450: undefined reference to
       `ipu_dmfc_put' drivers/staging/imx-drm/ipuv3-crtc.c:452:
       undefined reference to `ipu_dp_put'
       drivers/staging/imx-drm/ipuv3-crtc.c:454: undefined reference to
       `ipu_di_put'
      drivers/built-in.o: In function `ipu_probe':
       :(.text+0x4b4174): undefined reference to `device_reset'
      drivers/built-in.o: In function `imx_tve_probe':
       drivers/staging/imx-drm/imx-tve.c:648: undefined reference to
       `devm_regmap_init_mmio_clk'
      drivers/built-in.o: In function
       `imx_pd_connector_get_modes':
       drivers/staging/imx-drm/parallel-display.c:78: undefined
       reference to `of_get_drm_display_mode'
      
      Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
      Cc: Shawn Guo <shawn.guo@linaro.org>
      Cc: Philipp Zabel <p.zabel@pengutronix.de>
      Signed-off-by: NArnd Bergmann <arnd@arndb.de>
      Signed-off-by: NGreg Kroah-Hartman <gregkh@linuxfoundation.org>
      fcce7680
    • L
      staging: ste_rmi4: Suppress 'ignoring return value of ‘regulator_enable()' warning · a5017b96
      Lee Jones 提交于
      drivers/staging/ste_rmi4/synaptics_i2c_rmi4.c:
              In function ‘synaptics_rmi4_resume’:
      drivers/staging/ste_rmi4/synaptics_i2c_rmi4.c:1090:18:
              warning: ignoring return value of ‘regulator_enable’, declared
              with attribute warn_unused_result [-Wunused-result
      
      Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
      Cc: devel@driverdev.osuosl.org
      Acked-by: NSrinidhi Kasagar <srinidhi.kasagar@stericsson.com>
      Signed-off-by: NLee Jones <lee.jones@linaro.org>
      Signed-off-by: NGreg Kroah-Hartman <gregkh@linuxfoundation.org>
      a5017b96
    • R
      staging: sep: fix driver build and kconfig · ab2273c6
      Randy Dunlap 提交于
      Fix build errors in staging/sep/ by making DX_SEP depend on
      CRYPTO.
      
      drivers/built-in.o: In function `sep_sha1_init':
      sep_crypto.c:(.text+0x245ece): undefined reference to `crypto_enqueue_request'
      drivers/built-in.o: In function `sep_sha1_update':
      sep_crypto.c:(.text+0x245f4f): undefined reference to `crypto_enqueue_request'
      drivers/built-in.o: In function `sep_sha1_final':
      sep_crypto.c:(.text+0x245fcf): undefined reference to `crypto_enqueue_request'
      drivers/built-in.o: In function `sep_sha1_finup':
      sep_crypto.c:(.text+0x24604f): undefined reference to `crypto_enqueue_request'
      drivers/built-in.o: In function `sep_sha1_digest':
      sep_crypto.c:(.text+0x2460de): undefined reference to `crypto_enqueue_request'
      drivers/built-in.o:sep_crypto.c:(.text+0x24616e): more undefined references to `crypto_enqueue_request' follow
      drivers/built-in.o: In function `sep_crypto_block':
      sep_crypto.c:(.text+0x247c81): undefined reference to `ablkcipher_walk_phys'
      sep_crypto.c:(.text+0x247e40): undefined reference to `ablkcipher_walk_phys'
      drivers/built-in.o: In function `sep_dequeuer':
      sep_crypto.c:(.text+0x248ab9): undefined reference to `crypto_dequeue_request'
      sep_crypto.c:(.text+0x248afa): undefined reference to `crypto_ahash_type'
      sep_crypto.c:(.text+0x248fdf): undefined reference to `crypto_dequeue_request'
      drivers/built-in.o: In function `sep_crypto_setup':
      (.text+0x24902a): undefined reference to `crypto_init_queue'
      drivers/built-in.o: In function `sep_crypto_setup':
      (.text+0x24909c): undefined reference to `crypto_register_ahash'
      drivers/built-in.o: In function `sep_crypto_setup':
      (.text+0x2490c4): undefined reference to `crypto_register_alg'
      drivers/built-in.o: In function `sep_crypto_setup':
      (.text+0x2490f7): undefined reference to `crypto_unregister_alg'
      drivers/built-in.o: In function `sep_crypto_setup':
      (.text+0x249118): undefined reference to `crypto_unregister_ahash'
      drivers/built-in.o: In function `sep_crypto_takedown':
      (.text+0x249176): undefined reference to `crypto_unregister_ahash'
      drivers/built-in.o: In function `sep_crypto_takedown':
      (.text+0x249197): undefined reference to `crypto_unregister_alg'
      Signed-off-by: NRandy Dunlap <rdunlap@infradead.org>
      Signed-off-by: NGreg Kroah-Hartman <gregkh@linuxfoundation.org>
      ab2273c6
  6. 14 5月, 2013 9 次提交
    • M
      staging: nvec: cleanup childs on remove · c2b62f60
      Marc Dietrich 提交于
      Disable device functions and unregister notifier if available. The
      serio device must not be "kzallocated". Otherwise serio_unregister_port
      will fail because the device is already freed.
      Signed-off-by: NMarc Dietrich <marvin24@gmx.de>
      Signed-off-by: NGreg Kroah-Hartman <gregkh@linuxfoundation.org>
      c2b62f60
    • M
      staging: nvec: implement unregistering of notifiers · 111c1587
      Marc Dietrich 提交于
      This implements the unregistering of notifiers so kernel modules
      can be unloaded.
      Signed-off-by: NMarc Dietrich <marvin24@gmx.de>
      Signed-off-by: NGreg Kroah-Hartman <gregkh@linuxfoundation.org>
      111c1587
    • M
      staging: nvec: add missing module aliases · 99758dec
      Marc Dietrich 提交于
      Keyboard and mouse drivers were missing MODULE_ALIAS
      definitions. This fixes auto module loading of these
      drivers.
      Signed-off-by: NMarc Dietrich <marvin24@gmx.de>
      Signed-off-by: NGreg Kroah-Hartman <gregkh@linuxfoundation.org>
      99758dec
    • D
      staging: nvec: remove inline marking of EXPORT_SYMBOL functions · 705a4212
      Denis Efremov 提交于
      EXPORT_SYMBOL and inline directives are contradictory to each other.
      The patch fixes this inconsistency.
      
      Found by Linux Driver Verification project (linuxtesting.org).
      Signed-off-by: NDenis Efremov <yefremov.denis@gmail.com>
      Signed-off-by: NGreg Kroah-Hartman <gregkh@linuxfoundation.org>
      705a4212
    • I
      staging: comedi: complain if dma buffer allocation not supported · e9166139
      Ian Abbott 提交于
      When allocating a buffer to support asynchronous comedi commands, if a
      DMA coherent buffer was requested but `CONFIG_HAS_DMA` is undefined,
      bail out of local helper function `__comedi_buf_alloc()` with an error
      message.
      Signed-off-by: NIan Abbott <abbotti@mev.co.uk>
      Reviewed-by: NH Hartley Sweeten <hsweeten@visionengravers.com>
      Signed-off-by: NGreg Kroah-Hartman <gregkh@linuxfoundation.org>
      e9166139
    • I
      staging: comedi: ni_mio_common: only do counter commands for ni_pcimio · bd304a73
      Ian Abbott 提交于
      "ni_mio_common.c" holds common code included by "ni_pcimio.c",
      "ni_atmio.c" and "ni_mio_cs.c", including a common initialization
      function `ni_E_init()`.  Amongst other things, this initializes some
      counter subdevices to support comedi instructions and asynchronous
      commands.  However, even though it sets up the handlers to support
      asynchronous commands on these subdevices, the handlers will return an
      error unless the `PCIDMA` macro is defined (which is defined only in
      "ni_pcimio.c").  If the `PCIDMA` macro is not defined, the comedi core
      will needlessly allocate buffers to support the asynchronous commands.
      Also, `s->async_dma_dir` is set to `DMA_BIDIRECTIONAL`, causing the
      physical pages for the buffers to be allocated using
      `dma_alloc_coherent()`.
      
      If the comedi core cannot call `dma_alloc_coherent()` because
      `CONFIG_HAS_DMA` is not defined, it will fail to allocate the buffers,
      which ultimately causes `ni_E_init()` to fail.
      
      Avoid the wastage and prevent the failure by only setting up
      asynchronous command support for the counter subdevices if the `PCIDMA`
      macro is defined.
      Signed-off-by: NIan Abbott <abbotti@mev.co.uk>
      Reviewed-by: NH Hartley Sweeten <hsweeten@visionengravers.com>
      Signed-off-by: NGreg Kroah-Hartman <gregkh@linuxfoundation.org>
      bd304a73
    • I
      staging: comedi: work without HAS_DMA · 4efc4bbd
      Ian Abbott 提交于
      The core "comedi" module and the "mite" helper module for NI PCI devices
      both have calls to `dma_alloc_coherent()` and `dma_free_coherent()`.
      Those functions are only available if `CONFIG_HAS_DMA` is defined.
      
      Apart from the "mite" module, the functions are only called for comedi
      drivers that set `s->async_dma_dir` (where `s` is a pointer to a `struct
      comedi_subdevice`) to anything other than `DMA_NONE`.
      
      Change local helper functions `__comedi_buf_alloc()` and
      `__comedi_buf_free()` to only call `dma_alloc_coherent()` and
      `dma_free_coherent()` if `CONFIG_HAS_DMA` is defined.
      
      Change the "Kconfig" to make the following configuration options depend
      on `HAS_DMA`:
      
      `COMEDI_MITE` - builds the "mite" module.
      `COMEDI_NI_6527` - selects `COMEDI_MITE`.
      `COMEDI_NI_65XX` - selects `COMEDI_MITE`.
      `COMEDI_NI_670X` - selects `COMEDI_MITE`.
      `COMEDI_NI_LABPC_PCI` - selects `COMEDI_MITE`.
      `COMEDI_NI_PCIDIO` - selects `COMEDI_MITE`.
      `COMEDI_NI_TIOCMD` - selects `COMEDI_MITE`.
      `COMEDI_NI_660X` - selects `COMEDI_NI_TIOCMD`,
                         sets `s->async_dma_dir`.
      `COMEDI_NI_PCIMIO` - selects `COMEDI_NI_TIOCMD`,
                           sets `s->async_dma_dir`.
      Signed-off-by: NIan Abbott <abbotti@mev.co.uk>
      Reviewed-by: NH Hartley Sweeten <hsweeten@visionengravers.com>
      Signed-off-by: NGreg Kroah-Hartman <gregkh@linuxfoundation.org>
      4efc4bbd
    • I
      staging: comedi: allow buffer resize if previous resize failed · b3fab427
      Ian Abbott 提交于
      When a comedi device is successfully attached, those subdevices that
      support asynchronous commands will have had buffers allocated
      successfully.  It is possible to resize the buffers afterwards, but if
      the resize fails the subdevice is left with no buffer
      (`s->async->prealloc_buf == NULL`).  Currently, this also causes any
      subsequent attempts to resize the buffer to fail with an error, which
      seems like a bad idea.
      
      Remove the check in `resize_async_buffer()` that causes the resize to
      fail if the subdevice currently has no buffer (presumably due to the
      failure of a previous resize attempt).  Callers of
      `resize_async_buffer()` have already checked that the subdevice is
      allowed to have a buffer.
      Signed-off-by: NIan Abbott <abbotti@mev.co.uk>
      Signed-off-by: NGreg Kroah-Hartman <gregkh@linuxfoundation.org>
      b3fab427
    • H
      staging: comedi: ni_labpc: fix build when VIRT_TO_BUS is not defined · 1581a035
      H Hartley Sweeten 提交于
      After merging the final tree, the next-20130424 build (powerpc
      allyesconfig) failed like this:
      
      drivers/staging/comedi/drivers/ni_labpc.c: In function 'labpc_ai_cmd':
      drivers/staging/comedi/drivers/ni_labpc.c:980:9: error:
          implicit declaration of function 'virt_to_bus'
         [-Werror=implicit-function-declaration]
      
      The virt_to_bus() is only needed for the ISA DMA support in this driver.
      
      On powerpc, CONFIG_COMEDI_NI_LABPC_ISA cannot be enabled due to the
      depends on VIRT_TO_BUS but the PCI driver, ni_labpc_pci, can be enabled.
      That driver uses the ni_labpc driver for the common support code shared
      by the ISA, PCI, and PCMCIA boards.
      
      The ISA specific support, and the optional ISA DMA support, are currently
      still in the common ni_labpc driver. The ISA specific code is protected
      by #if IS_ENABLED(CONFIG_COMEDI_NI_LABPC_ISA) and the ISA DMA support
      is protected by #ifdef CONFIG_ISA_DMA_API. This allows the ISA support
      to be enabled on architectures that support VIRT_TO_BUS and optionally
      enables ISA DMA support if ISA_DMA_API is enabled.
      
      Unfortunately, the ISA DMA code uses virt_to_bus(). This results in
      the build failure for architectures that enable ISA_DMA_API but do not
      have VIRT_TO_BUS.
      
      Add a new member to the private data, dma_addr, to hold the phys_addr_t
      returned by virt_to_bus() and initialize it in the ISA specific
      labpc_attach().
      
      For architectures that enable ISA_DMA_API but not VIRT_TO_BUS, this
      will fix the build error. This is also safe for architectures the
      enable both options but don't enable COMEDI_NI_LABPC_ISA because the
      dma channel (devpriv->dma_chan) is only initialized in the ISA
      specific labpc_attach().
      Signed-off-by: NH Hartley Sweeten <hsweeten@visionengravers.com>
      Reported-by: NStephen Rothwell <sfr@canb.auug.org.au>
      Cc: Ian Abbott <abbotti@mev.co.uk>
      Signed-off-by: NGreg Kroah-Hartman <gregkh@linuxfoundation.org>
      1581a035
  7. 13 5月, 2013 1 次提交
  8. 12 5月, 2013 6 次提交
    • L
      Linux 3.10-rc1 · f722406f
      Linus Torvalds 提交于
      f722406f
    • L
      Merge tag 'trace-fixes-v3.10' of git://git.kernel.org/pub/scm/linux/kernel/git/rostedt/linux-trace · 26b840ae
      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
      26b840ae
    • L
      Merge tag 'stable/for-linus-3.10-rc0-tag-two' of... · 607eeb0b
      Linus Torvalds 提交于
      Merge tag 'stable/for-linus-3.10-rc0-tag-two' of git://git.kernel.org/pub/scm/linux/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.
      607eeb0b
    • L
      Merge tag 'scsi-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi · 4c444501
      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
        ...
      4c444501
    • L
      Merge branch 'release' of git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux · ac4e0109
      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
      ac4e0109
    • L
      Merge git://git.infradead.org/users/eparis/audit · c4cc75c3
      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
        ...
      c4cc75c3
  9. 11 5月, 2013 7 次提交
    • L
      Merge branch 'for-3.10' of git://linux-nfs.org/~bfields/linux · 2dbd3cac
      Linus Torvalds 提交于
      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
      2dbd3cac
    • L
      Merge branch 'for_linus' of git://cavan.codon.org.uk/platform-drivers-x86 · a77c0058
      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
      a77c0058
    • L
      Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/viro/signal · 3644bc2e
      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(...)
      3644bc2e
    • L
      Merge tag 'ecryptfs-3.10-rc1-ablkcipher' of... · 6fad8d02
      Linus Torvalds 提交于
      Merge tag 'ecryptfs-3.10-rc1-ablkcipher' of git://git.kernel.org/pub/scm/linux/kernel/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
      6fad8d02
    • L
      Merge tag 'for-linus-20130509' of git://git.infradead.org/~dwmw2/random-2.6 · f741df1f
      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()
      f741df1f
    • L
      Merge tag 'kvm-3.10-2' of git://git.kernel.org/pub/scm/virt/kvm/kvm · c67723eb
      Linus Torvalds 提交于
      Pull kvm fixes from Gleb Natapov:
       "Most of the fixes are in the emulator since now we emulate more than
        we did before for correctness sake we see more bugs there, but there
        is also an OOPS fixed and corruption of xcr0 register."
      
      * tag 'kvm-3.10-2' of git://git.kernel.org/pub/scm/virt/kvm/kvm:
        KVM: emulator: emulate SALC
        KVM: emulator: emulate XLAT
        KVM: emulator: emulate AAM
        KVM: VMX: fix halt emulation while emulating invalid guest sate
        KVM: Fix kvm_irqfd_init initialization
        KVM: x86: fix maintenance of guest/host xcr0 state
      c67723eb
    • L
      Merge tag 'dm-3.10-changes-2' of git://git.kernel.org/pub/scm/linux/kernel/git/agk/linux-dm · ec667158
      Linus Torvalds 提交于
      Pull device-mapper updates from Alasdair Kergon:
       "Allow devices that hold metadata for the device-mapper thin
        provisioning target to be extended easily; allow WRITE SAME on
        multipath devices; an assortment of little fixes and clean-ups."
      
      * tag 'dm-3.10-changes-2' of git://git.kernel.org/pub/scm/linux/kernel/git/agk/linux-dm: (21 commits)
        dm cache: set config value
        dm cache: move config fns
        dm thin: generate event when metadata threshold passed
        dm persistent metadata: add space map threshold callback
        dm persistent data: add threshold callback to space map
        dm thin: detect metadata device resizing
        dm persistent data: support space map resizing
        dm thin: open dev read only when possible
        dm thin: refactor data dev resize
        dm cache: replace memcpy with struct assignment
        dm cache: fix typos in comments
        dm cache policy: fix description of lookup fn
        dm: document iterate_devices
        dm persistent data: fix error message typos
        dm cache: tune migration throttling
        dm mpath: enable WRITE SAME support
        dm table: fix write same support
        dm bufio: avoid a possible __vmalloc deadlock
        dm snapshot: fix error return code in snapshot_ctr
        dm cache: fix error return code in cache_create
        ...
      ec667158