Skip to content
  1. Sep 18, 2015
  2. Sep 17, 2015
  3. Sep 16, 2015
    • Mans Rullgard's avatar
      clk: check for invalid parent index of orphans in __clk_init() · 9054a31d
      Mans Rullgard authored
      
      
      If a mux clock is initialised (by hardware or firmware) with an
      invalid parent, its ->get_parent() can return an out of range
      index.  For example, the generic mux clock attempts to return
      -EINVAL, which due to the u8 return type ends up a rather large
      number.  Using this index with the parent_names[] array results
      in an invalid pointer and (usually) a crash in the following
      strcmp().
      
      This patch adds a check for the parent index being in range,
      ignoring clocks reporting invalid values.
      
      Signed-off-by: default avatarMans Rullgard <mans@mansr.com>
      Tested-by: default avatarRhyland Klein <rklein@nvidia.com>
      Signed-off-by: default avatarStephen Boyd <sboyd@codeaurora.org>
      9054a31d
    • Thierry Reding's avatar
      clk: tegra: dfll: Properly protect OPP list · e1595d89
      Thierry Reding authored
      
      
      The OPP list needs to be protected against concurrent accesses. Using
      simple RCU read locks does the trick and gets rid of the following
      lockdep warning:
      
      	===============================
      	[ INFO: suspicious RCU usage. ]
      	4.2.0-next-20150908 #1 Not tainted
      	-------------------------------
      	drivers/base/power/opp.c:460 Missing rcu_read_lock() or dev_opp_list_lock protection!
      
      	other info that might help us debug this:
      
      	rcu_scheduler_active = 1, debug_locks = 0
      	4 locks held by kworker/u8:0/6:
      	 #0:  ("%s""deferwq"){++++.+}, at: [<c0040d8c>] process_one_work+0x118/0x4bc
      	 #1:  (deferred_probe_work){+.+.+.}, at: [<c0040d8c>] process_one_work+0x118/0x4bc
      	 #2:  (&dev->mutex){......}, at: [<c03b8194>] __device_attach+0x20/0x118
      	 #3:  (prepare_lock){+.+...}, at: [<c054bc08>] clk_prepare_lock+0x10/0xf8
      
      	stack backtrace:
      	CPU: 2 PID: 6 Comm: kworker/u8:0 Not tainted 4.2.0-next-20150908 #1
      	Hardware name: NVIDIA Tegra SoC (Flattened Device Tree)
      	Workqueue: deferwq deferred_probe_work_func
      	[<c001802c>] (unwind_backtrace) from [<c00135a4>] (show_stack+0x10/0x14)
      	[<c00135a4>] (show_stack) from [<c02a8418>] (dump_stack+0x94/0xd4)
      	[<c02a8418>] (dump_stack) from [<c03c6f6c>] (dev_pm_opp_find_freq_ceil+0x108/0x114)
      	[<c03c6f6c>] (dev_pm_opp_find_freq_ceil) from [<c0551a3c>] (dfll_calculate_rate_request+0xb8/0x170)
      	[<c0551a3c>] (dfll_calculate_rate_request) from [<c0551b10>] (dfll_clk_round_rate+0x1c/0x2c)
      	[<c0551b10>] (dfll_clk_round_rate) from [<c054de2c>] (clk_calc_new_rates+0x1b8/0x228)
      	[<c054de2c>] (clk_calc_new_rates) from [<c054e44c>] (clk_core_set_rate_nolock+0x44/0xac)
      	[<c054e44c>] (clk_core_set_rate_nolock) from [<c054e4d8>] (clk_set_rate+0x24/0x34)
      	[<c054e4d8>] (clk_set_rate) from [<c0512460>] (tegra124_cpufreq_probe+0x120/0x230)
      	[<c0512460>] (tegra124_cpufreq_probe) from [<c03b9cbc>] (platform_drv_probe+0x44/0xac)
      	[<c03b9cbc>] (platform_drv_probe) from [<c03b84c8>] (driver_probe_device+0x218/0x304)
      	[<c03b84c8>] (driver_probe_device) from [<c03b69b0>] (bus_for_each_drv+0x60/0x94)
      	[<c03b69b0>] (bus_for_each_drv) from [<c03b8228>] (__device_attach+0xb4/0x118)
      	ata1: SATA link down (SStatus 0 SControl 300)
      	[<c03b8228>] (__device_attach) from [<c03b77c8>] (bus_probe_device+0x88/0x90)
      	[<c03b77c8>] (bus_probe_device) from [<c03b7be8>] (deferred_probe_work_func+0x58/0x8c)
      	[<c03b7be8>] (deferred_probe_work_func) from [<c0040dfc>] (process_one_work+0x188/0x4bc)
      	[<c0040dfc>] (process_one_work) from [<c004117c>] (worker_thread+0x4c/0x4f4)
      	[<c004117c>] (worker_thread) from [<c0047230>] (kthread+0xe4/0xf8)
      	[<c0047230>] (kthread) from [<c000f7d0>] (ret_from_fork+0x14/0x24)
      
      Signed-off-by: default avatarThierry Reding <treding@nvidia.com>
      Fixes: c4fe70ad ("clk: tegra: Add closed loop support for the DFLL")
      [vince.h@nvidia.com: Unlock rcu on error path]
      Signed-off-by: default avatarVince Hsu <vince.h@nvidia.com>
      [sboyd@codeaurora.org: Dropped second hunk that nested the rcu
      read lock unnecessarily]
      Signed-off-by: default avatarStephen Boyd <sboyd@codeaurora.org>
      e1595d89
    • Rob Herring's avatar
      sh: Kill off set_irq_flags usage · 3e15135b
      Rob Herring authored
      
      
      set_irq_flags is ARM specific with custom flags which have genirq
      equivalents. Convert drivers to use the genirq interfaces directly, so we
      can kill off set_irq_flags. The translation of flags is as follows:
      
      IRQF_VALID -> !IRQ_NOREQUEST
      IRQF_PROBE -> !IRQ_NOPROBE
      IRQF_NOAUTOEN -> IRQ_NOAUTOEN
      
      For IRQs managed by an irqdomain, the irqdomain core code handles clearing
      and setting IRQ_NOREQUEST already, so there is no need to do this in
      .map() functions and we can simply remove the set_irq_flags calls. Some
      users also modify IRQ_NOPROBE and this has been maintained although it
      is not clear that is really needed. There appears to be a great deal of
      blind copy and paste of this code.
      
      Signed-off-by: default avatarRob Herring <robh@kernel.org>
      Acked-by: default avatarSimon Horman <horms@verge.net.au>
      Cc: linux-arm-kernel@lists.infradead.org
      Cc: linux-sh@vger.kernel.org
      Cc: Russell King <linux@arm.linux.org.uk>
      Cc: Magnus Damm <magnus.damm@gmail.com>
      Link: http://lkml.kernel.org/r/1440889285-5637-4-git-send-email-robh@kernel.org
      
      
      Signed-off-by: default avatarThomas Gleixner <tglx@linutronix.de>
      3e15135b
    • Rob Herring's avatar
      irqchip: Kill off set_irq_flags usage · d17cab44
      Rob Herring authored
      
      
      set_irq_flags is ARM specific with custom flags which have genirq
      equivalents. Convert drivers to use the genirq interfaces directly, so we
      can kill off set_irq_flags. The translation of flags is as follows:
      
      IRQF_VALID -> !IRQ_NOREQUEST
      IRQF_PROBE -> !IRQ_NOPROBE
      IRQF_NOAUTOEN -> IRQ_NOAUTOEN
      
      For IRQs managed by an irqdomain, the irqdomain core code handles clearing
      and setting IRQ_NOREQUEST already, so there is no need to do this in
      .map() functions and we can simply remove the set_irq_flags calls. Some
      users also modify IRQ_NOPROBE and this has been maintained although it
      is not clear that is really needed. There appears to be a great deal of
      blind copy and paste of this code.
      
      Signed-off-by: default avatarRob Herring <robh@kernel.org>
      Cc: linux-arm-kernel@lists.infradead.org
      Cc: Russell King <linux@arm.linux.org.uk>
      Cc: Jason Cooper <jason@lakedaemon.net>
      Cc: Kukjin Kim <kgene@kernel.org>
      Cc: Krzysztof Kozlowski <k.kozlowski@samsung.com>
      Cc: Stephen Warren <swarren@wwwdotorg.org>
      Cc: Lee Jones <lee@kernel.org>
      Cc: Alexander Shiyan <shc_work@mail.ru>
      Cc: Maxime Ripard <maxime.ripard@free-electrons.com>
      Cc: linux-rpi-kernel@lists.infradead.org
      Cc: linux-samsung-soc@vger.kernel.org
      Link: http://lkml.kernel.org/r/1440889285-5637-3-git-send-email-robh@kernel.org
      
      
      Signed-off-by: default avatarThomas Gleixner <tglx@linutronix.de>
      d17cab44
    • Rob Herring's avatar
      gpu/drm: Kill off set_irq_flags usage · ca0141de
      Rob Herring authored
      
      
      set_irq_flags is ARM specific with custom flags which have genirq
      equivalents. Convert drivers to use the genirq interfaces directly, so we
      can kill off set_irq_flags. The translation of flags is as follows:
      
      IRQF_VALID -> !IRQ_NOREQUEST
      IRQF_PROBE -> !IRQ_NOPROBE
      IRQF_NOAUTOEN -> IRQ_NOAUTOEN
      
      For IRQs managed by an irqdomain, the irqdomain core code handles clearing
      and setting IRQ_NOREQUEST already, so there is no need to do this in
      .map() functions and we can simply remove the set_irq_flags calls. Some
      users also modify IRQ_NOPROBE and this has been maintained although it
      is not clear that is really needed. There appears to be a great deal of
      blind copy and paste of this code.
      
      Signed-off-by: default avatarRob Herring <robh@kernel.org>
      Cc: linux-arm-kernel@lists.infradead.org
      Cc: Russell King <linux@arm.linux.org.uk>
      Cc: David Airlie <airlied@linux.ie>
      Cc: dri-devel@lists.freedesktop.org
      Signed-off-by: default avatarThomas Gleixner <tglx@linutronix.de>
      ca0141de
    • Thomas Gleixner's avatar
      genirq: Remove irq argument from irq flow handlers · bd0b9ac4
      Thomas Gleixner authored
      
      
      Most interrupt flow handlers do not use the irq argument. Those few
      which use it can retrieve the irq number from the irq descriptor.
      
      Remove the argument.
      
      Search and replace was done with coccinelle and some extra helper
      scripts around it. Thanks to Julia for her help!
      
      Signed-off-by: default avatarThomas Gleixner <tglx@linutronix.de>
      Cc: Julia Lawall <Julia.Lawall@lip6.fr>
      Cc: Jiang Liu <jiang.liu@linux.intel.com>
      bd0b9ac4
    • Thomas Gleixner's avatar
      irqchip/gic-v3: Use IRQD_FORWARDED_TO_VCPU flag · 4df7f54d
      Thomas Gleixner authored
      
      
      Get rid of the handler_data abuse.
      
      Signed-off-by: default avatarThomas Gleixner <tglx@linutronix.de>
      Acked-by: default avatarMarc Zyngier <marc.zyngier@arm.com>
      4df7f54d
    • Thomas Gleixner's avatar
      irqchip/gic: Use IRQD_FORWARDED_TO_VCPU flag · 71466535
      Thomas Gleixner authored
      
      
      Get rid of the handler_data abuse.
      
      Signed-off-by: default avatarThomas Gleixner <tglx@linutronix.de>
      Acked-by: default avatarMarc Zyngier <marc.zyngier@arm.com>
      71466535
    • Thomas Gleixner's avatar
      pinctrl/pistachio: Use irq_set_handler_locked · 7c51173a
      Thomas Gleixner authored
      
      
      Use irq_set_handler_locked() as it avoids a redundant lookup of the
      irq descriptor. Search and replacement was done with coccinelle:
      
      Signed-off-by: default avatarThomas Gleixner <tglx@linutronix.de>
      Cc: Julia Lawall <julia.lawall@lip6.fr>
      Cc: Linus Walleij <linus.walleij@linaro.org>
      Cc: linux-gpio@vger.kernel.org
      7c51173a
    • Thomas Gleixner's avatar
      gpio: vf610: Use irq_set_handler_locked · a7147db0
      Thomas Gleixner authored
      
      
      Use irq_set_handler_locked() as it avoids a redundant lookup of the
      irq descriptor. Search and replacement was done with coccinelle:
      
      Signed-off-by: default avatarThomas Gleixner <tglx@linutronix.de>
      Cc: Julia Lawall <julia.lawall@lip6.fr>
      Cc: Linus Walleij <linus.walleij@linaro.org>
      Cc: linux-gpio@vger.kernel.org
      a7147db0
    • Thomas Gleixner's avatar
      pinctrl: sunxi: Use irq_set_chip_handler_name_locked() · b9a5ec33
      Thomas Gleixner authored
      
      
      __irq_set_chip_handler_name_locked() is about to be replaced. Use
      irq_set_chip_handler_name_locked() instead.
      
      Signed-off-by: default avatarThomas Gleixner <tglx@linutronix.de>
      Cc: Linus Walleij <linus.walleij@linaro.org>
      Cc: linux-gpio@vger.kernel.org
      b9a5ec33
    • Pierre Morel's avatar
      virtio/s390: handle failures of READ_VQ_CONF ccw · ad2aa042
      Pierre Morel authored
      
      
      In virtio_ccw_read_vq_conf() the return value of ccw_io_helper()
      was not checked.
      If the configuration could not be read properly, we'd wrongly assume a
      queue size of 0.
      
      Let's propagate any I/O error to virtio_ccw_setup_vq() so it may
      properly fail.
      
      Signed-off-by: default avatarPierre Morel <pmorel@linux.vnet.ibm.com>
      Signed-off-by: default avatarCornelia Huck <cornelia.huck@de.ibm.com>
      Signed-off-by: default avatarMichael S. Tsirkin <mst@redhat.com>
      ad2aa042
    • Michael S. Tsirkin's avatar
      vhost: move features to core · 4e9fa50c
      Michael S. Tsirkin authored
      
      
      virtio 1 and any layout are core features, move them
      there. This fixes vhost test.
      
      Signed-off-by: default avatarMichael S. Tsirkin <mst@redhat.com>
      4e9fa50c
    • Rafael J. Wysocki's avatar
      cpufreq: acpi-cpufreq: Use cpufreq_cpu_get_raw() in ->get() · 1f0bd44e
      Rafael J. Wysocki authored
      
      
      cpufreq_cpu_get() called by get_cur_freq_on_cpu() is overkill,
      because the ->get() callback is always invoked in a context in
      which all of the conditions checked by cpufreq_cpu_get() are
      guaranteed to be satisfied.
      
      Use cpufreq_cpu_get_raw() instead of it and drop the
      corresponding cpufreq_cpu_put() from get_cur_freq_on_cpu().
      
      Signed-off-by: default avatarRafael J. Wysocki <rafael.j.wysocki@intel.com>
      Acked-by: default avatarViresh Kumar <viresh.kumar@linaro.org>
      1f0bd44e
  4. Sep 15, 2015
Loading