1. 10 Feb, 2015 1 commit
  2. 08 Jan, 2015 9 commits
  3. 05 Jan, 2015 10 commits
    • Michal Simek's avatar
      microblaze: Use unsigned type for proper comparison in cpuinfo*.c · bdb96e3c
      Michal Simek authored
      Compare the same types together.
      
      Compilation warnings:
      arch/microblaze/kernel/cpu/cpuinfo-pvr-full.c: In function
      'set_cpuinfo_pvr_full':
      arch/microblaze/kernel/cpu/cpuinfo-pvr-full.c:47:20: warning: comparison
      between signed and unsigned integer expressions [-Wsign-compare]
      arch/microblaze/kernel/cpu/cpuinfo-pvr-full.c:52:19: warning: comparison
      between signed and unsigned integer expressions [-Wsign-compare]
      arch/microblaze/kernel/cpu/cpuinfo-pvr-full.c:57:18: warning: comparison
      between signed and unsigned integer expressions [-Wsign-compare]
      arch/microblaze/kernel/cpu/cpuinfo-pvr-full.c:94:20: warning: comparison
      between signed and unsigned integer expressions [-Wsign-compare]
      arch/microblaze/kernel/cpu/cpuinfo-static.c: In function
      'set_cpuinfo_static':
      arch/microblaze/kernel/cpu/cpuinfo-static.c:40:20: warning: comparison
      between signed and unsigned integer expressions [-Wsign-compare]
      Signed-off-by: default avatarMichal Simek <michal.simek@xilinx.com>
      bdb96e3c
    • Michal Simek's avatar
      microblaze: Use unsigned type for "for" loop because of comparison-kgdb.c · e76fdb32
      Michal Simek authored
      This patch removes warnings reported by W=1:
      arch/microblaze/kernel/kgdb.c: In function 'pt_regs_to_gdb_regs':
      arch/microblaze/kernel/kgdb.c:43:16: warning: comparison between signed
      and unsigned integer expressions [-Wsign-compare]
      arch/microblaze/kernel/kgdb.c:51:16: warning: comparison between signed
      and unsigned integer expressions [-Wsign-compare]
      arch/microblaze/kernel/kgdb.c: In function 'gdb_regs_to_pt_regs':
      arch/microblaze/kernel/kgdb.c:77:16: warning: comparison between signed
      and unsigned integer expressions [-Wsign-compare]
      arch/microblaze/kernel/kgdb.c: In function
      'sleeping_thread_to_gdb_regs':
      arch/microblaze/kernel/kgdb.c:99:16: warning: comparison between signed
      and unsigned integer expressions [-Wsign-compare]
      arch/microblaze/kernel/kgdb.c:103:16: warning: comparison between signed
      and unsigned integer expressions [-Wsign-compare]
      Signed-off-by: default avatarMichal Simek <michal.simek@xilinx.com>
      e76fdb32
    • Michal Simek's avatar
      microblaze: Change extern inline to static inline · b6db0a56
      Michal Simek authored
      With compilers which follow the C99 standard (like modern versions of gcc and
      clang), "extern inline" does the opposite thing from older versions of gcc
      (emits code for an externally linkable version of the inline function).
      
      "static inline" does the intended behavior in all cases instead.
      
      Description taken from:
      "staging, rtl8192e, LLVMLinux: Change extern inline to static inline"
      (sha1: 6d91857d)
      
      The patch removes compilation warnings W=1:
      ./arch/microblaze/include/asm/delay.h:18:20: warning: no previous
      prototype for '__delay' [-Wmissing-prototypes]
       extern inline void __delay(unsigned long loops)
      ./arch/microblaze/include/asm/delay.h:46:20: warning: no previous
      prototype for '__udelay' [-Wmissing-prototypes]
       extern inline void __udelay(unsigned int x)
      ./arch/microblaze/include/asm/pgalloc.h:63:22: warning: no previous
      prototype for 'get_pgd_slow' [-Wmissing-prototypes]
       extern inline pgd_t *get_pgd_slow(void)
      ./arch/microblaze/include/asm/pgalloc.h:73:22: warning: no previous
      prototype for 'get_pgd_fast' [-Wmissing-prototypes]
       extern inline pgd_t *get_pgd_fast(void)
      ./arch/microblaze/include/asm/pgalloc.h:87:20: warning: no previous
      prototype for 'free_pgd_fast' [-Wmissing-prototypes]
       extern inline void free_pgd_fast(pgd_t *pgd)
      ./arch/microblaze/include/asm/pgalloc.h:94:20: warning: no previous
      prototype for 'free_pgd_slow' [-Wmissing-prototypes]
       extern inline void free_pgd_slow(pgd_t *pgd)
      ./arch/microblaze/include/asm/pgalloc.h:149:20: warning: no previous
      prototype for 'pte_free_fast' [-Wmissing-prototypes]
       extern inline void pte_free_fast(pte_t *pte)
      ./arch/microblaze/include/asm/pgalloc.h:156:20: warning: no previous
      prototype for 'pte_free_kernel' [-Wmissing-prototypes]
       extern inline void pte_free_kernel(struct mm_struct *mm, pte_t *pte)
      ./arch/microblaze/include/asm/pgalloc.h:161:20: warning: no previous
      prototype for 'pte_free_slow' [-Wmissing-prototypes]
       extern inline void pte_free_slow(struct page *ptepage)
      Signed-off-by: default avatarMichal Simek <michal.simek@xilinx.com>
      b6db0a56
    • Michal Simek's avatar
      microblaze: Mark get_frame_size as static · e14ebe41
      Michal Simek authored
      It is used only locally in unwind.c.
      
      The patch removes warning:
      arch/microblaze/kernel/unwind.c:62:13: warning: no previous prototype
      for 'get_frame_size' [-Wmissing-prototypes]
       inline long get_frame_size(unsigned long instr)
      Signed-off-by: default avatarMichal Simek <michal.simek@xilinx.com>
      e14ebe41
    • Michal Simek's avatar
      microblaze: Use unsigned return type in do_syscall_trace_enter · 8543e6c9
      Michal Simek authored
      Registers are not signed types.
      
      The patch removes warnings:
      arch/microblaze/kernel/ptrace.c: In function 'do_syscall_trace_enter':
      arch/microblaze/kernel/ptrace.c:152:14: warning: signed and unsigned
      type in conditional expression [-Wsign-compare]
        return ret ?: regs->r12;
      Signed-off-by: default avatarMichal Simek <michal.simek@xilinx.com>
      8543e6c9
    • Michal Simek's avatar
      microblaze: Declare microblaze_kgdb_break in header · f396a4d2
      Michal Simek authored
      This patch removes the warning:
      arch/microblaze/kernel/kgdb.c:81:6: warning: no previous prototype for
      'microblaze_kgdb_break' [-Wmissing-prototypes]
      Signed-off-by: default avatarMichal Simek <michal.simek@xilinx.com>
      f396a4d2
    • Michal Simek's avatar
      microblaze: Remove unused prom header from reset.c · b366f11b
      Michal Simek authored
      Completely unused header by this file.
      Signed-off-by: default avatarMichal Simek <michal.simek@xilinx.com>
      b366f11b
    • Michal Simek's avatar
      microblaze: Remove unused prom_parse.c · 32db31da
      Michal Simek authored
      of_parse_dma_window is completely unused.
      Signed-off-by: default avatarMichal Simek <michal.simek@xilinx.com>
      32db31da
    • Michal Simek's avatar
      microblaze: Wire-up execveat syscall · add4b1b0
      Michal Simek authored
      Add new execveat syscall.
      Signed-off-by: default avatarMichal Simek <michal.simek@xilinx.com>
      add4b1b0
    • Michal Simek's avatar
      microblaze: Use empty asm-generic/linkage.h · e236fe93
      Michal Simek authored
      The difference between microblaze and default version
      in linux/linkage.h is just value stored in the padding bytes
      which was 0 and in generic is 0x90. Different value shouldn't have
      any effect.
      Signed-off-by: default avatarMichal Simek <michal.simek@xilinx.com>
      e236fe93
  4. 29 Dec, 2014 1 commit
  5. 28 Dec, 2014 4 commits
  6. 27 Dec, 2014 4 commits
  7. 26 Dec, 2014 5 commits
    • Linus Torvalds's avatar
      Merge branch 'parisc-3.19-1' of git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux · 58628a78
      Linus Torvalds authored
      Pull parisc build fix from Helge Deller:
       "This unbreaks the kernel compilation on parisc with gcc-4.9"
      
      * 'parisc-3.19-1' of git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux:
        parisc: fix out-of-register compiler error in ldcw inline assembler function
      58628a78
    • John David Anglin's avatar
      parisc: fix out-of-register compiler error in ldcw inline assembler function · 45db0738
      John David Anglin authored
      The __ldcw macro has a problem when its argument needs to be reloaded from
      memory. The output memory operand and the input register operand both need to
      be reloaded using a register in class R1_REGS when generating 64-bit code.
      This fails because there's only a single register in the class. Instead, use a
      memory clobber. This also makes the __ldcw macro a compiler memory barrier.
      Signed-off-by: default avatarJohn David Anglin <dave.anglin@bell.net>
      Cc: <stable@vger.kernel.org>        [3.13+]
      Signed-off-by: default avatarHelge Deller <deller@gmx.de>
      45db0738
    • Libin Yang's avatar
      ALSA: hda_intel: apply the Seperate stream_tag for Skylake · d6795827
      Libin Yang authored
      The total stream number of Skylake's input and output stream
      exceeds 15, which will cause some streams do not work because
      of the overflow on SDxCTL.STRM field if using the legacy
      stream tag allocation method.
      
      This patch uses the new stream tag allocation method by add
      the flag AZX_DCAPS_SEPARATE_STREAM_TAG for Skylake platform.
      Signed-off-by: default avatarLibin Yang <libin.yang@intel.com>
      Reviewed-by: default avatarVinod Koul <vinod.koul@intel.com>
      Signed-off-by: default avatarTakashi Iwai <tiwai@suse.de>
      d6795827
    • Rafal Redzimski's avatar
      ALSA: hda_controller: Separate stream_tag for input and output streams. · 93e3423e
      Rafal Redzimski authored
      Implemented separate stream_tag assignment for input and output streams.
      According to hda specification stream tag must be unique throughout the
      input streams group, however an output stream might use a stream tag
      which is already in use by an input stream. This change is necessary
      to support HW which provides a total of more than 15 stream DMA engines
      which with legacy implementation causes an overflow on SDxCTL.STRM
      field (and the whole SDxCTL register) and as a result usage of
      Reserved value 0 in the SDxCTL.STRM field which confuses HDA controller.
      Signed-off-by: default avatarRafal Redzimski <rafal.f.redzimski@intel.com>
      Signed-off-by: default avatarJayachandran B <jayachandran.b@intel.com>
      Signed-off-by: default avatarLibin Yang <libin.yang@intel.com>
      Reviewed-by: default avatarVinod Koul <vinod.koul@intel.com>
      Signed-off-by: default avatarTakashi Iwai <tiwai@suse.de>
      93e3423e
    • Linus Torvalds's avatar
      Merge branch 'drm-fixes' of git://people.freedesktop.org/~airlied/linux · 08b022a9
      Linus Torvalds authored
      Pull drm fixes from Dave Airlie:
       "Xmas fixes pull:
      
        core:
            one atomic fix, revert the WARN_ON dumb buffers patch.
      
        agp:
            fixup Dave J.
      
        nouveau:
            fix 3.18 regression for old userspace
      
        tegra fixes:
            vblank and iommu fixes
      
        amdkfd:
            fix bugs shown by testing with userspace, init apertures once
      
        msm:
            hdmi fixes and cleanup
      
        i915:
            misc fixes
      
        There is also a link ordering fix that I've asked to be cc'ed to you,
        putting iommu before gpu, it fixes an issue with amdkfd when things
        are all in the kernel, but I didn't like sending it via my tree
        without discussion.
      
        I'll probably be a bit on/off for a few weeks with pulls now, due to
        holidays and LCA, so don't be surprised if stuff gets a bit backed up,
        and things end up a bit large due to lag"
      
      * 'drm-fixes' of git://people.freedesktop.org/~airlied/linux: (28 commits)
        Revert "drm/gem: Warn on illegal use of the dumb buffer interface v2"
        agp: Fix up email address & attributions in AGP MODULE_AUTHOR tags
        nouveau: bring back legacy mmap handler
        drm/msm/hdmi: rework HDMI IRQ handler
        drm/msm/hdmi: enable regulators before clocks to avoid warnings
        drm/msm/mdp5: update irqs on crtc<->encoder link change
        drm/msm: block incoming update on pending updates
        drm/atomic: fix potential null ptr on plane enable
        drm/msm: Deletion of unnecessary checks before the function call "release_firmware"
        drm/msm: Deletion of unnecessary checks before two function calls
        drm/tegra: dc: Select root window for event dispatch
        drm/tegra: gem: Use the proper size for GEM objects
        drm/tegra: gem: Flush buffer objects upon allocation
        drm/tegra: dc: Fix a potential race on page-flip completion
        drm/tegra: dc: Consistently use the same pipe
        drm/irq: Add drm_crtc_vblank_count()
        drm/irq: Add drm_crtc_handle_vblank()
        drm/irq: Add drm_crtc_send_vblank_event()
        drm/i915: Disable PSMI sleep messages on all rings around context switches
        drm/i915: Force the CS stall for invalidate flushes
        ...
      08b022a9
  8. 25 Dec, 2014 1 commit
  9. 24 Dec, 2014 3 commits
  10. 23 Dec, 2014 2 commits
    • Richard Guy Briggs's avatar
      audit: restore AUDIT_LOGINUID unset ABI · 041d7b98
      Richard Guy Briggs authored
      A regression was caused by commit 780a7654:
      	 audit: Make testing for a valid loginuid explicit.
      (which in turn attempted to fix a regression caused by e1760bd5)
      
      When audit_krule_to_data() fills in the rules to get a listing, there was a
      missing clause to convert back from AUDIT_LOGINUID_SET to AUDIT_LOGINUID.
      
      This broke userspace by not returning the same information that was sent and
      expected.
      
      The rule:
      	auditctl -a exit,never -F auid=-1
      gives:
      	auditctl -l
      		LIST_RULES: exit,never f24=0 syscall=all
      when it should give:
      		LIST_RULES: exit,never auid=-1 (0xffffffff) syscall=all
      
      Tag it so that it is reported the same way it was set.  Create a new
      private flags audit_krule field (pflags) to store it that won't interact with
      the public one from the API.
      
      Cc: stable@vger.kernel.org # v3.10-rc1+
      Signed-off-by: default avatarRichard Guy Briggs <rgb@redhat.com>
      Signed-off-by: default avatarPaul Moore <pmoore@redhat.com>
      041d7b98
    • Linus Torvalds's avatar
      Merge tag 'arm64-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/arm64/linux · 53262d12
      Linus Torvalds authored
      Pull arm64 fixes from Catalin Marinas:
       - __cpu_suspend mm switching fix after warm boot
       - arch_setup_dma_ops implementation
       - pgd_page compilation error fix
       - defconfig updates
      
      * tag 'arm64-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/arm64/linux:
        arm64: mm: Add pgd_page to support RCU fast_gup
        arm64: defconfig: defconfig update for 3.19
        arm64: kernel: fix __cpu_suspend mm switch on warm-boot
        arm64: Replace set_arch_dma_coherent_ops with arch_setup_dma_ops
      53262d12