24 Jan, 2015

1 commit

  • The libata tag allocation is using a round-robin policy. Next patch will
    make libata use block generic tag allocation, so let's add a policy to
    tag allocation.

    Currently two policies: FIFO (default) and round-robin.

    Cc: Jens Axboe
    Cc: Tejun Heo
    Cc: Christoph Hellwig
    Signed-off-by: Shaohua Li
    Signed-off-by: Jens Axboe

    Shaohua Li
     

22 Jan, 2015

3 commits

  • As Christoph put it:
    Can we just get rid of the warnings? It's fairly annoying as devices
    without partitions are perfectly fine and very useful.

    Me too I see this message every VM boot for ages on all my
    devices. Would love to just remove it. For me a partition-table
    is only needed for a booting BIOS, grub, and stuff.

    CC: Christoph Hellwig
    Signed-off-by: Boaz Harrosh
    Signed-off-by: Jens Axboe

    Boaz Harrosh
     
  • blkdev_issue_discard() will zero a given block range. This is done by
    way of explicit writing, thus provisioning or allocating the blocks on
    disk.

    There are use cases where the desired behavior is to zero the blocks but
    unprovision them if possible. The blocks must deterministically contain
    zeroes when they are subsequently read back.

    This patch adds a flag to blkdev_issue_zeroout() that provides this
    variant. If the discard flag is set and a block device guarantees
    discard_zeroes_data we will use REQ_DISCARD to clear the block range. If
    the device does not support discard_zeroes_data or if the discard
    request fails we will fall back to first REQ_WRITE_SAME and then a
    regular REQ_WRITE.

    Also update the callers of blkdev_issue_zero() to reflect the new flag
    and make sb_issue_zeroout() prefer the discard approach.

    Signed-off-by: Martin K. Petersen
    Reviewed-by: Christoph Hellwig
    Signed-off-by: Jens Axboe

    Martin K. Petersen
     
  • Hi,

    If you can manage to submit an async write as the first async I/O from
    the context of a process with realtime scheduling priority, then a
    cfq_queue is allocated, but filed into the wrong async_cfqq bucket. It
    ends up in the best effort array, but actually has realtime I/O
    scheduling priority set in cfqq->ioprio.

    The reason is that cfq_get_queue assumes the default scheduling class and
    priority when there is no information present (i.e. when the async cfqq
    is created):

    static struct cfq_queue *
    cfq_get_queue(struct cfq_data *cfqd, bool is_sync, struct cfq_io_cq *cic,
    struct bio *bio, gfp_t gfp_mask)
    {
    const int ioprio_class = IOPRIO_PRIO_CLASS(cic->ioprio);
    const int ioprio = IOPRIO_PRIO_DATA(cic->ioprio);

    cic->ioprio starts out as 0, which is "invalid". So, class of 0
    (IOPRIO_CLASS_NONE) is passed to cfq_async_queue_prio like so:

    async_cfqq = cfq_async_queue_prio(cfqd, ioprio_class, ioprio);

    static struct cfq_queue **
    cfq_async_queue_prio(struct cfq_data *cfqd, int ioprio_class, int ioprio)
    {
    switch (ioprio_class) {
    case IOPRIO_CLASS_RT:
    return &cfqd->async_cfqq[0][ioprio];
    case IOPRIO_CLASS_NONE:
    ioprio = IOPRIO_NORM;
    /* fall through */
    case IOPRIO_CLASS_BE:
    return &cfqd->async_cfqq[1][ioprio];
    case IOPRIO_CLASS_IDLE:
    return &cfqd->async_idle_cfqq;
    default:
    BUG();
    }
    }

    Here, instead of returning a class mapped from the process' scheduling
    priority, we get back the bucket associated with IOPRIO_CLASS_BE.

    Now, there is no queue allocated there yet, so we create it:

    cfqq = cfq_find_alloc_queue(cfqd, is_sync, cic, bio, gfp_mask);

    That function ends up doing this:

    cfq_init_cfqq(cfqd, cfqq, current->pid, is_sync);
    cfq_init_prio_data(cfqq, cic);

    cfq_init_cfqq marks the priority as having changed. Then, cfq_init_prio
    data does this:

    ioprio_class = IOPRIO_PRIO_CLASS(cic->ioprio);
    switch (ioprio_class) {
    default:
    printk(KERN_ERR "cfq: bad prio %x\n", ioprio_class);
    case IOPRIO_CLASS_NONE:
    /*
    * no prio set, inherit CPU scheduling settings
    */
    cfqq->ioprio = task_nice_ioprio(tsk);
    cfqq->ioprio_class = task_nice_ioclass(tsk);
    break;

    So we basically have two code paths that treat IOPRIO_CLASS_NONE
    differently, which results in an RT async cfqq filed into a best effort
    bucket.

    Attached is a patch which fixes the problem. I'm not sure how to make
    it cleaner. Suggestions would be welcome.

    Signed-off-by: Jeff Moyer
    Tested-by: Hidehiro Kawai
    Cc: stable@kernel.org
    Signed-off-by: Jens Axboe

    Jeff Moyer
     

14 Jan, 2015

2 commits

  • The blk-mq tagging tries to maintain some locality between CPUs and
    the tags issued. The tags are split into groups of words, and the
    words may not be fully populated. When searching for a new free tag,
    blk-mq may look at partial words, hence it passes in an offset/size
    to find_next_zero_bit(). However, it does that wrong, the size must
    always be the full length of the number of tags in that word,
    otherwise we'll potentially miss some near the end.

    Another issue is when __bt_get() goes from one word set to the next.
    It bumps the index, but not the last_tag associated with the
    previous index. Bump that to be in the range of the new word.

    Finally, clean up __bt_get() and __bt_get_word() a bit and get
    rid of the goto in there, and the unnecessary 'wrap' variable.

    Signed-off-by: Jens Axboe

    Jens Axboe
     
  • In order to support accesses to larger chunks of memory, pass in a
    'size' parameter (counted in bytes), and return the amount available at
    that address.

    Add a new helper function, bdev_direct_access(), to handle common
    functionality including partition handling, checking the length requested
    is positive, checking for the sector being page-aligned, and checking
    the length of the request does not pass the end of the partition.

    Signed-off-by: Matthew Wilcox
    Reviewed-by: Jan Kara
    Reviewed-by: Boaz Harrosh
    Signed-off-by: Jens Axboe

    Matthew Wilcox
     

03 Jan, 2015

3 commits


01 Jan, 2015

1 commit

  • If it's dying, we can't expect new request to complete and come
    in an wake up other tasks waiting for requests. So after we
    have marked it as dying, wake up everybody currently waiting
    for a request. Once they wake, they will retry their allocation
    and fail appropriately due to the state of the queue.

    Tested-by: Keith Busch
    Signed-off-by: Jens Axboe

    Jens Axboe
     

29 Dec, 2014

3 commits


28 Dec, 2014

5 commits

  • Modifying a non-existent slot is not allowed. Also check that the
    first loop doesn't move a deleted slot beyond the used part of
    the mslots array.

    Signed-off-by: Paolo Bonzini

    Paolo Bonzini
     
  • Before commit 0e60b0799fed (kvm: change memslot sorting rule from size
    to GFN, 2014-12-01), the memslots' sorting key was npages, meaning
    that a valid memslot couldn't have its sorting key equal to zero.
    On the other hand, a valid memslot can have base_gfn == 0, and invalid
    memslots are identified by base_gfn == npages == 0.

    Because of this, commit 0e60b0799fed broke the invariant that invalid
    memslots are at the end of the mslots array. When a memslot with
    base_gfn == 0 was created, any invalid memslot before it were left
    in place.

    This can be fixed by changing the insertion to use a ">=" comparison
    instead of "
    Reported-by: Andy Lutomirski
    Tested-by: Jamie Heilman
    Signed-off-by: Paolo Bonzini

    Paolo Bonzini
     
  • Pull sound fixes from Takashi Iwai:
    "Just a couple of fixes for the new Intel Skylake HD-audio support"

    * tag 'sound-3.19-rc2' of git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound:
    ALSA: hda_intel: apply the Seperate stream_tag for Skylake
    ALSA: hda_controller: Separate stream_tag for input and output streams.

    Linus Torvalds
     
  • Since most virtual machines raise this message once, it is a bit annoying.
    Make it KERN_DEBUG severity.

    Cc: stable@vger.kernel.org
    Fixes: 7a2e8aaf0f6873b47bc2347f216ea5b0e4c258ab
    Signed-off-by: Paolo Bonzini

    Paolo Bonzini
     
  • The commit 34a1cd60d17f, "x86: vmx: move some vmx setting from
    vmx_init() to hardware_setup()", tried to refactor some codes
    specific to vmx hardware setting into hardware_setup(), but some
    msr writing should depend on our previous setting condition like
    enable_apicv, enable_ept and so on.

    Reported-by: Jamie Heilman
    Tested-by: Jamie Heilman
    Signed-off-by: Tiejun Chen
    Signed-off-by: Paolo Bonzini

    Tiejun Chen
     

27 Dec, 2014

3 commits


26 Dec, 2014

4 commits

  • 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: Libin Yang
    Reviewed-by: Vinod Koul
    Signed-off-by: Takashi Iwai

    Libin Yang
     
  • 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: Rafal Redzimski
    Signed-off-by: Jayachandran B
    Signed-off-by: Libin Yang
    Reviewed-by: Vinod Koul
    Signed-off-by: Takashi Iwai

    Rafal Redzimski
     
  • 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 crtcencoder 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
    ...

    Linus Torvalds
     
  • Pull ipmi driver bugfixes from Corey Minyard:
    "Fix two bugs:

    One that lockdep turned up, I didn't go far enough with cleanup of
    attributes for IPMI. This has been there a long time; my previous fix
    of this didn't fix all the attributes.

    One fix for some arches that need an explicit linux/ctype.h for
    isspace()"

    * tag 'for-linus-2' of git://git.code.sf.net/p/openipmi/linux-ipmi:
    ipmi: Fix compile issue with isspace()
    ipmi: Finish cleanup of BMC attributes

    Linus Torvalds
     

24 Dec, 2014

8 commits

  • This reverts commit 355a70183848f21198e9f6296bd646df3478a26d.

    This had some bad side effects under normal operation, and should
    have been dropped earlier.

    Signed-off-by: Dave Airlie

    Dave Airlie
     
  • - Display MEC fw version in topology. Without this, the HSA userspace
    stack is broken.

    - Init apertures information only once per process

    * tag 'amdkfd-fixes-2014-12-23' of git://people.freedesktop.org/~gabbayo/linux:
    amdkfd: init aperture once per process
    amdkfd: Display MEC fw version in topology node
    drm/radeon: Add implementation of get_fw_version
    drm/amd: Add get_fw_version to kfd-->kgd interface

    Dave Airlie
     
  • Pull audit fixes from Paul Moore:
    "Four patches to fix various problems with the audit subsystem, all are
    fairly small and straightforward.

    One patch fixes a problem where we weren't using the correct gfp
    allocation flags (GFP_KERNEL regardless of context, oops), one patch
    fixes a problem with old userspace tools (this was broken for a
    while), one patch fixes a problem where we weren't recording pathnames
    correctly, and one fixes a problem with PID based filters.

    In general I don't think there is anything controversial with this
    patchset, and it fixes some rather unfortunate bugs; the allocation
    flag one can be particularly scary looking for users"

    * 'upstream' of git://git.infradead.org/users/pcmoore/audit:
    audit: restore AUDIT_LOGINUID unset ABI
    audit: correctly record file names with different path name types
    audit: use supplied gfp_mask from audit_buffer in kauditd_send_multicast_skb
    audit: don't attempt to lookup PIDs when changing PID filtering audit rules

    Linus Torvalds
     
  • A regression was caused by commit 780a7654cee8:
    audit: Make testing for a valid loginuid explicit.
    (which in turn attempted to fix a regression caused by e1760bd)

    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: Richard Guy Briggs
    Signed-off-by: Paul Moore

    Richard Guy Briggs
     
  • 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

    Linus Torvalds
     
  • This patch adds pgd_page definition in order to keep supporting
    HAVE_GENERIC_RCU_GUP configuration. In addition, it changes pud_page
    expression to align with pmd_page for readability.

    An introduction of pgd_page resolves the following build breakage
    under 4KB + 4Level memory management combo.

    mm/gup.c: In function 'gup_huge_pgd':
    mm/gup.c:889:2: error: implicit declaration of function 'pgd_page' [-Werror=implicit-function-declaration]
    head = pgd_page(orig);
    ^
    mm/gup.c:889:7: warning: assignment makes pointer from integer without a cast
    head = pgd_page(orig);

    Cc: Will Deacon
    Cc: Steve Capper
    Signed-off-by: Jungseok Lee
    [catalin.marinas@arm.com: remove duplicate pmd_page definition]
    Signed-off-by: Catalin Marinas

    Jungseok Lee
     
  • The usual defconfig tweaks, this time:

    - FHANDLE and AUTOFS4_FS to keep systemd happy
    - PID_NS, QUOTA and KEYS to keep LTP happy
    - Disable DEBUG_PREEMPT, as this *really* hurts performance

    Signed-off-by: Will Deacon
    Signed-off-by: Catalin Marinas

    Will Deacon
     
  • On arm64 the TTBR0_EL1 register is set to either the reserved TTBR0
    page tables on boot or to the active_mm mappings belonging to user space
    processes, it must never be set to swapper_pg_dir page tables mappings.

    When a CPU is booted its active_mm is set to init_mm even though its
    TTBR0_EL1 points at the reserved TTBR0 page mappings. This implies
    that when __cpu_suspend is triggered the active_mm can point at
    init_mm even if the current TTBR0_EL1 register contains the reserved
    TTBR0_EL1 mappings.

    Therefore, the mm save and restore executed in __cpu_suspend might
    turn out to be erroneous in that, if the current->active_mm corresponds
    to init_mm, on resume from low power it ends up restoring in the
    TTBR0_EL1 the init_mm mappings that are global and can cause speculation
    of TLB entries which end up being propagated to user space.

    This patch fixes the issue by checking the active_mm pointer before
    restoring the TTBR0 mappings. If the current active_mm == &init_mm,
    the code sets the TTBR0_EL1 to the reserved TTBR0 mapping instead of
    switching back to the active_mm, which is the expected behaviour
    corresponding to the TTBR0_EL1 settings when __cpu_suspend was entered.

    Fixes: 95322526ef62 ("arm64: kernel: cpu_{suspend/resume} implementation")
    Cc: # 3.14+: 18ab7db
    Cc: # 3.14+: 714f599
    Cc: # 3.14+: c3684fb
    Cc: # 3.14+
    Cc: Will Deacon
    Signed-off-by: Lorenzo Pieralisi
    Signed-off-by: Catalin Marinas

    Lorenzo Pieralisi
     

23 Dec, 2014

7 commits

  • - Remove soon-to-be-dead @redhat address.
    - Jeff Hartmann wrote the bulk of the original backend code, and should
    at least get a mention in the MODULE_AUTHOR for backend.o
    - Various people at Intel have done a lot more work than myself on the
    intel-* drivers, so again, mention that.

    Signed-off-by: Dave Jones
    Signed-off-by: Dave Airlie

    Dave Jones
     
  • Pull device mapper fixes from Mike Snitzer:
    "Thre stable fixes and one fix for a regression introduced during 3.19
    merge:

    - Fix inability to discard used space when the thin-pool target is in
    out-of-data-space mode and also transition the thin-pool back to
    write mode once free space is made available.

    - Fix DM core bio-based end_io bug that prevented proper
    post-processing of the error code returned from the block layer.

    - Fix crash in DM thin-pool due to thin device being added to the
    pool's active_thins list before properly initializing the thin
    device's refcount"

    * tag 'dm-3.19-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm:
    dm: fix missed error code if .end_io isn't implemented by target_type
    dm thin: fix crash by initializing thin device's refcount and completion earlier
    dm thin: fix missing out-of-data-space to write mode transition if blocks are released
    dm thin: fix inability to discard blocks when in out-of-data-space mode

    Linus Torvalds
     
  • This reverts commit c8475d144abb1e62958cc5ec281d2a9e161c1946.

    There are several[1][2] of bug reports which points to this commit as potential
    cause[3].

    Let's revert it until we figure out what's going on.

    [1] https://lkml.org/lkml/2014/11/14/342
    [2] https://lkml.org/lkml/2014/12/22/213
    [3] https://lkml.org/lkml/2014/12/9/741

    Signed-off-by: Kirill A. Shutemov
    Reported-by: Sasha Levin
    Acked-by: Davidlohr Bueso
    Cc: Hugh Dickins
    Cc: Oleg Nesterov
    Cc: Peter Zijlstra (Intel)
    Cc: Rik van Riel
    Cc: Srikar Dronamraju
    Cc: Mel Gorman
    Signed-off-by: Linus Torvalds

    Kirill A. Shutemov
     
  • drm/tegra: Fixes for v3.19-rc1

    This is a set of fixes for two regressions and one bug in the IOMMU
    mapping code. It turns out that all of these issues turn up primarily
    on Tegra30 hardware. The IOMMU mapping bug only manifests on buffers
    that aren't multiples of the page size. I happened to be testing HDMI
    with 1080p while writing the code and framebuffers for that happen to
    fit exactly within 2025 pages of 4 KiB each.

    One of the regressions is caused by the IOMMU code allocating pages from
    shmem which can have associated cache lines. If the pages aren't flushed
    then these cache lines may be flushed later on and cause framebuffer
    corruption. I'm not sure why I didn't see this before. Perhaps the board
    that I was using had enough RAM so that the pages shmem would hand out
    had a better chance of being unused. Or maybe I didn't look too closely.
    The fix for this is to fake up an SG table so that it can be passed to
    the DMA API. Ideally this would use drm_clflush_*(), but implementing
    that for ARM causes DRM to fail to build as a module since some of the
    low-level cache maintenance functions aren't exported. Hopefully we can
    get a suitable API exported on ARM for the next release.

    The second regression is caused by a mismatch between the hardware pipe
    number and the CRTC's DRM index. These were used inconsistently, which
    could cause one code location to call drm_vblank_get() with a different
    pipe than the corresponding drm_vblank_put(), thereby causing the
    reference count to become unbalanced. Alexandre also reported a possible
    race condition related to this, which this series also fixes.

    * tag 'drm/tegra/for-3.19-rc1-fixes' of git://people.freedesktop.org/~tagr/linux:
    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()

    Dave Airlie
     
  • …-intel into drm-fixes

    misc i915 fixes.

    * tag 'drm-intel-next-fixes-2014-12-17' of git://anongit.freedesktop.org/drm-intel:
    drm/i915: Disable PSMI sleep messages on all rings around context switches
    drm/i915: Force the CS stall for invalidate flushes
    drm/i915: Invalidate media caches on gen7
    drm/i915: sanitize RPS resetting during GPU reset
    drm/i915: move RPS PM_IER enabling to gen6_enable_rps_interrupts
    drm/i915: vlv: fix IRQ masking when uninstalling interrupts

    Dave Airlie
     
  • Yeah a pull for one patch is a bit overkill but I started to assemble the
    various patches for 3.20 in a branch for atomic props/ioctl and didn't
    realize that this bugfix here at the beginnning of the branch should be in
    3.19 (because msm is using the helpers arleady). So if you'd merge we'd
    have it twice or or I need to shuffle branches again. Can do if you want.

    * tag 'topic/atomic-fixes-2014-12-17' of git://anongit.freedesktop.org/drm-intel:
    drm/atomic: fix potential null ptr on plane enable

    Dave Airlie
     
  • A few msm fixes for 3.19:
    * hdmi regulators fix
    * hdmi fix for spurious HPD interrupts
    * fix for sync atomic update after async update (which could show
    up with a setcrtc following a pageflip)
    * couple little Coccinelle cleanups

    * 'msm-fixes-3.19' of git://people.freedesktop.org/~robclark/linux:
    drm/msm/hdmi: rework HDMI IRQ handler
    drm/msm/hdmi: enable regulators before clocks to avoid warnings
    drm/msm/mdp5: update irqs on crtcencoder link change
    drm/msm: block incoming update on pending updates
    drm/msm: Deletion of unnecessary checks before the function call "release_firmware"
    drm/msm: Deletion of unnecessary checks before two function calls

    Dave Airlie