Re: [RFC] ktap: Another dynamic tracing tool for Linux

2013-01-04 Thread Jovi Zhang
On Tue, Jan 1, 2013 at 2:58 AM, Frank Ch. Eigler f...@redhat.com wrote: bookjovi wrote: [...] This mail is RFC for discuss on a new dynamic tracing tool, I name it ktap. (only experimental project now) Welcome to the problem domain! Thanks very much, frank, I'm so luck to discussing this

Re: [PATCH v2 net-next] softirq: reduce latencies

2013-01-04 Thread Joe Perches
On Thu, 2013-01-03 at 23:49 -0800, Eric Dumazet wrote: In various network workloads, __do_softirq() latencies can be up to 20 ms if HZ=1000, and 200 ms if HZ=100. This patch changes the fallback to ksoftirqd condition to : - A time limit of 2 ms. [] diff --git a/kernel/softirq.c

Re: [PATCH] iommu: moving initialization earlier

2013-01-04 Thread Alexey Kardashevskiy
On 16/12/12 22:20, Joerg Roedel wrote: Alexey, On Thu, Dec 13, 2012 at 08:48:55AM -0700, Alex Williamson wrote: Probably a good idea to CC the iommu list and maintainer... On Thu, 2012-12-13 at 17:28 +1100, Alexey Kardashevskiy wrote: Signed-off-by: Alexey Kardashevskiy a...@ozlabs.ru

[PATCH] nfs: fix null checking in nfs_get_option_str()

2013-01-04 Thread Xi Wang
The following null pointer check is broken. *option = match_strdup(args); return !option; The pointer `option' must be non-null, and thus `!option' is always false. Use `!*option' instead. The bug was introduced in commit c5cb09b6f8 (Cleanup: Factor out some cut-and-paste

Re: [PATCH v2 net-next] softirq: reduce latencies

2013-01-04 Thread Eric Dumazet
On Fri, 2013-01-04 at 00:15 -0800, Joe Perches wrote: On Thu, 2013-01-03 at 23:49 -0800, Eric Dumazet wrote: In various network workloads, __do_softirq() latencies can be up to 20 ms if HZ=1000, and 200 ms if HZ=100. This patch changes the fallback to ksoftirqd condition to : - A time

[PATCH] backlight: check null deference of name when device is registered

2013-01-04 Thread Jingoo Han
NULL deference of name is checked when device is registered. If the name is null, it will cause a kernel oops in dev_set_name(). Acked-by: Devendra Naga devendra.a...@gmail.com Signed-off-by: Jingoo Han jg1@samsung.com --- drivers/video/backlight/backlight.c |5 +

[PATCH][trivial] xtensa: Fix home page URL in Kconfig

2013-01-04 Thread Masanari Iida
This home page address has moved to new one. Signed-off-by: Masanari Iida standby2...@gmail.com --- arch/xtensa/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/xtensa/Kconfig b/arch/xtensa/Kconfig index 0d1f36a..75fb260 100644 --- a/arch/xtensa/Kconfig +++

[PATCH] vfs: fix build break in include/linux/namei.h

2013-01-04 Thread Marek Szyprowski
This patch fixes the following build break which I've observed in v3.8-rc1: In file included from fs/nfs/nfs4namespace.c:12:0: include/linux/namei.h: In function ‘retry_estale’: include/linux/namei.h:114:19: error: ‘ESTALE’ undeclared (first use in this function) include/linux/namei.h:114:19:

[PATCH] ARM: DTS: exynos4210-origen: Add MAX8997 node entry

2013-01-04 Thread Tushar Behera
The node entry is added as per documentation and legacy board file. Signed-off-by: Tushar Behera tushar.beh...@linaro.org --- The patch is rebased on v3.8-rc1. arch/arm/boot/dts/exynos4210-origen.dts | 150 +++ 1 files changed, 150 insertions(+), 0 deletions(-)

[PATCH 1/2] Add mempressure cgroup

2013-01-04 Thread Anton Vorontsov
This commit implements David Rientjes' idea of mempressure cgroup. The main characteristics are the same to what I've tried to add to vmevent API; internally, it uses Mel Gorman's idea of scanned/reclaimed ratio for pressure index calculation. But we don't expose the index to the userland.

[PATCH 0/2] Mempressure cgroup

2013-01-04 Thread Anton Vorontsov
Hi all, Here is another round of the mempressure cgroup. This time I dared to remove the RFC tag. :) In this revision: - Addressed most of Kirill Shutemov's comments. I didn't bother implementing per-level lists, though. It would needlessly complicate the logic, and the gain would be only

[PATCH 2/2] Add shrinker interface for mempressure cgroup

2013-01-04 Thread Anton Vorontsov
This commit implements Andrew Morton's idea of kernel-controlled userland reclaimer. This is very similar to the in-kernel shrinker, with one major difference: it is asynchronous, i.e. like kswapd. Note that the shrinker interface is not a substitution for the levels, the two interfaces report

Re: [PATCH 2/2] arm: make return_address available for ARM_UNWIND

2013-01-04 Thread Keun-O Park
On Fri, Jan 4, 2013 at 1:58 AM, Steven Rostedt rost...@goodmis.org wrote: On Thu, 2013-01-03 at 16:23 +, Russell King - ARM Linux wrote: On Thu, Jan 03, 2013 at 11:03:58AM -0500, Steven Rostedt wrote: On Thu, 2013-01-03 at 14:13 +, Russell King - ARM Linux wrote: In summary, from

[patch net-next V6 00/15] net: introduce upper device lists and remove dev-master

2013-01-04 Thread Jiri Pirko
This is a V6 of a repost of my previous patchset: [patch net-next v2 00/15] net: introduce upper device lists and remove dev-master from Aug 14 The discussion around [net-next] bonding: don't allow the master to become its slave forced me to think about upper-lower device connections. This

[patch net-next V6 05/15] team: remove usage of netdev_set_master()

2013-01-04 Thread Jiri Pirko
Signed-off-by: Jiri Pirko j...@resnulli.us --- drivers/net/team/team.c | 13 +++-- 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/drivers/net/team/team.c b/drivers/net/team/team.c index 78c7d87..5f35d6b 100644 --- a/drivers/net/team/team.c +++ b/drivers/net/team/team.c @@

[patch net-next V6 04/15] rtnetlink: remove usage of dev-master

2013-01-04 Thread Jiri Pirko
Signed-off-by: Jiri Pirko j...@resnulli.us --- net/core/rtnetlink.c | 69 1 file changed, 37 insertions(+), 32 deletions(-) diff --git a/net/core/rtnetlink.c b/net/core/rtnetlink.c index 2ef7a56..ae612f4 100644 --- a/net/core/rtnetlink.c +++

[patch net-next V6 09/15] qlcnic: guard __vlan_find_dev_deep() by rcu_read_lock

2013-01-04 Thread Jiri Pirko
rcu_read_lock was missing here Signed-off-by: Jiri Pirko j...@resnulli.us Acked-by: Sony Chacko sony.cha...@qlogic.com --- drivers/net/ethernet/qlogic/qlcnic/qlcnic_main.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/drivers/net/ethernet/qlogic/qlcnic/qlcnic_main.c

[patch net-next V6 13/15] bonding: remove usage of dev-master

2013-01-04 Thread Jiri Pirko
Benefit from new upper dev list and free bonding from dev-master usage. Signed-off-by: Jiri Pirko j...@resnulli.us --- drivers/net/bonding/bond_3ad.c | 30 ++--- drivers/net/bonding/bond_alb.c | 6 +-- drivers/net/bonding/bond_main.c | 94 -

[patch net-next V6 15/15] net: kill dev-master

2013-01-04 Thread Jiri Pirko
Nobody uses this now. Remove it. Signed-off-by: Jiri Pirko j...@resnulli.us --- include/linux/netdevice.h | 4 1 file changed, 4 deletions(-) diff --git a/include/linux/netdevice.h b/include/linux/netdevice.h index c3723ef..009bad3 100644 --- a/include/linux/netdevice.h +++

[patch net-next V6 10/15] qeth: ensure that __vlan_find_dev_deep() is called with rcu_read_lock

2013-01-04 Thread Jiri Pirko
Also benefit from rcu_read_lock held and use __in_dev_get_rcu() in ipv4 case. Signed-off-by: Jiri Pirko j...@resnulli.us --- drivers/s390/net/qeth_l3_main.c | 21 +++-- 1 file changed, 11 insertions(+), 10 deletions(-) diff --git a/drivers/s390/net/qeth_l3_main.c

[patch net-next V6 14/15] net: remove no longer used netdev_set_bond_master() and netdev_set_master()

2013-01-04 Thread Jiri Pirko
Signed-off-by: Jiri Pirko j...@resnulli.us --- include/linux/netdevice.h | 6 + net/core/dev.c| 63 --- 2 files changed, 1 insertion(+), 68 deletions(-) diff --git a/include/linux/netdevice.h b/include/linux/netdevice.h index

[patch net-next V6 12/15] nes: remove usage of dev-master

2013-01-04 Thread Jiri Pirko
Signed-off-by: Jiri Pirko j...@resnulli.us --- drivers/infiniband/hw/nes/nes.c| 8 +--- drivers/infiniband/hw/nes/nes_cm.c | 2 +- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/drivers/infiniband/hw/nes/nes.c b/drivers/infiniband/hw/nes/nes.c index 748db2d..d129c36 100644

[PATCH] [trivial] h8300: Fix home page URL in h8300/README

2013-01-04 Thread Masanari Iida
Correct home page URL in h8300/README. Signed-off-by: Masanari Iida standby2...@gmail.com --- arch/h8300/README | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/h8300/README b/arch/h8300/README index 637f5a0..efa805f 100644 --- a/arch/h8300/README +++ b/arch/h8300/README

[patch net-next V6 11/15] vlan: remove usage of dev-master in __vlan_find_dev_deep()

2013-01-04 Thread Jiri Pirko
Also, since all users call __vlan_find_dev_deep() with rcu_read_lock, make no possibility to call this with rtnl mutex held only. Signed-off-by: Jiri Pirko j...@resnulli.us --- net/8021q/vlan_core.c | 18 +++--- 1 file changed, 11 insertions(+), 7 deletions(-) diff --git

[patch net-next V6 08/15] cxgb3: remove usage of dev-master

2013-01-04 Thread Jiri Pirko
Signed-off-by: Jiri Pirko j...@resnulli.us --- drivers/net/ethernet/chelsio/cxgb3/cxgb3_offload.c | 11 +++ 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/drivers/net/ethernet/chelsio/cxgb3/cxgb3_offload.c b/drivers/net/ethernet/chelsio/cxgb3/cxgb3_offload.c index

[patch net-next V6 07/15] netpoll: remove usage of dev-master

2013-01-04 Thread Jiri Pirko
Signed-off-by: Jiri Pirko j...@resnulli.us --- net/core/netpoll.c | 9 ++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/net/core/netpoll.c b/net/core/netpoll.c index 3151acf..d2bda8e 100644 --- a/net/core/netpoll.c +++ b/net/core/netpoll.c @@ -210,9 +210,12 @@ static void

[patch net-next V6 02/15] macvlan: add link to upper device

2013-01-04 Thread Jiri Pirko
Signed-off-by: Jiri Pirko j...@resnulli.us --- drivers/net/macvlan.c | 9 - 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/drivers/net/macvlan.c b/drivers/net/macvlan.c index 68a43fe..b7b614f 100644 --- a/drivers/net/macvlan.c +++ b/drivers/net/macvlan.c @@ -765,16 +765,22

[patch net-next V6 01/15] net: introduce upper device lists

2013-01-04 Thread Jiri Pirko
This lists are supposed to serve for storing pointers to all upper devices. Eventually it will replace dev-master pointer which is used for bonding, bridge, team but it cannot be used for vlan, macvlan where there might be multiple upper present. In case the upper link is replacement for

[patch net-next V6 06/15] bridge: remove usage of netdev_set_master()

2013-01-04 Thread Jiri Pirko
Signed-off-by: Jiri Pirko j...@resnulli.us --- net/bridge/br_if.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/net/bridge/br_if.c b/net/bridge/br_if.c index 1edd71d..2148d47 100644 --- a/net/bridge/br_if.c +++ b/net/bridge/br_if.c @@ -148,7 +148,7 @@ static void

[patch net-next V6 03/15] vlan: add link to upper device

2013-01-04 Thread Jiri Pirko
Signed-off-by: Jiri Pirko j...@resnulli.us --- net/8021q/vlan.c | 10 +- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/net/8021q/vlan.c b/net/8021q/vlan.c index a292e80..babfde9 100644 --- a/net/8021q/vlan.c +++ b/net/8021q/vlan.c @@ -105,6 +105,8 @@ void

[git pull] Input updates for 3.8-rc2

2013-01-04 Thread Dmitry Torokhov
Hi Linus, Please pull from: git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git for-linus or master.kernel.org:/pub/scm/linux/kernel/git/dtor/input.git for-linus to receive updates for the input subsystem. Just a couple of driver fixes this time. Thanks! Changelog:

[RFC PATCH] mm: memblock: fix wrong memmove size in memblock_merge_regions()

2013-01-04 Thread Lin Feng
The memmove span covers from (next+1) to the end of the array, and the index of next is (i+1), so the index of (next+1) is (i+2). So the size of remaining array elements is (type-cnt - (i + 2)). PS. It seems that memblock_merge_regions() could be made some improvement: we need't memmove the

Re: [PATCH v2 net-next] softirq: reduce latencies

2013-01-04 Thread Joe Perches
On Fri, 2013-01-04 at 00:23 -0800, Eric Dumazet wrote: On Fri, 2013-01-04 at 00:15 -0800, Joe Perches wrote: Perhaps MAX_SOFTIRQ_TIME should be #define MAX_SOFTIRQ_TIME msecs_to_jiffies(2) though it would be nicer if it were a compile time constant. If you send a patch to convert

Re: [PATCH 3/4 v5 RESEND] rtc: add rtc-driver for HID sensors of type time

2013-01-04 Thread Jiri Kosina
On Thu, 3 Jan 2013, Andrew Morton wrote: This driver makes the time from HID sensors (hubs) which are offering such available like any other RTC does. It is necessary that all values like year, month etc, are send as 8bit values (1 byte each) and all of them in 1 report. Also the

Re: [PATCH 29/32] block, aio: Batch completion for bios/kiocbs

2013-01-04 Thread Jens Axboe
On 2012-12-27 03:00, Kent Overstreet wrote: When completing a kiocb, there's some fixed overhead from touching the kioctx's ring buffer the kiocb belongs to. Some newer high end block devices can complete multiple IOs per interrupt, much like many network interfaces have been for some time.

Re: [PATCH 00/32] AIO performance improvements/cleanups, v3

2013-01-04 Thread Jens Axboe
On 2012-12-27 02:59, Kent Overstreet wrote: Last posting: http://article.gmane.org/gmane.linux.kernel.aio.general/3242 As before, changes should mostly be noted in the patch descriptions. Some random bits: * flush_dcache_page() patch is new * Rewrote the aio_read_evt() stuff again *

[RFC PATCH] mm: memblock: optimize memblock_find_in_range_node() to minimize the search work

2013-01-04 Thread Lin Feng
The memblock array is in ascending order and we traverse the memblock array in reverse order so we can add some simple check to reduce the search work. Tejun fix a underflow bug in 5d53cb27d8, but I think we could break there for the same reason. Cc: Tejun Heo t...@kernel.org Signed-off-by: Lin

Re: [PATCH resend 0/2] I2C: sis630: add sis964 support

2013-01-04 Thread Jean Delvare
On Fri, 28 Dec 2012 20:24:00 +0100, Amaury Decrême wrote: On Tue, Dec 18, 2012 at 12:51:05PM +0100, Jean Delvare wrote: On Wed, 29 Aug 2012 03:35:13 +0200, Amaury Decrême wrote: I reviewed these two patches 2 months ago, but did not hear back from you since then. Do you plan to resubmit

Re: Support for Marvell 88E1510 and 88E1116R

2013-01-04 Thread Michal Simek
Hi Steve, 2013/1/2 Steven Wang steven.w...@digilentinc.com: Hi, Michal, We do have the Ethernet support for 88E1510 (used on ZedBoard) in our repository. The commit is https://github.com/Digilent/linux-digilent/commit/ae635e5fff35e9fe5928b4aca7264a1e5313a6b8 Or, I can send the patch to you

[PATCH v3 0/9] Migrate Tegra to common clock framework

2013-01-04 Thread Prashant Gaikwad
This patchset does following: 1. Decompose single tegra clock structure into multiple clocks. 2. Try to use standard clock types supported by common clock framework. 3. Use dynamic initialization. 4. Move all clock code to drivers/clk/tegra from mach-tegra. 5. Add device tree support for Tegra20

[PATCH v3 6/9] clk: tegra: add clock support for tegra20

2013-01-04 Thread Prashant Gaikwad
Add tegra20 clock support based on common clock framework. Signed-off-by: Prashant Gaikwad pgaik...@nvidia.com --- drivers/clk/tegra/Makefile |2 + drivers/clk/tegra/clk-tegra20.c | 1244 +++ drivers/clk/tegra/clk.h |6 + 3 files changed,

[PATCH v3 5/9] ARM: Tegra: Define Tegra30 CAR binding

2013-01-04 Thread Prashant Gaikwad
The device tree binding models Tegra30 CAR (Clock And Reset) as a single monolithic clock provider. Signed-off-by: Prashant Gaikwad pgaik...@nvidia.com --- .../bindings/clock/nvidia,tegra30-car.txt | 270 arch/arm/boot/dts/tegra30.dtsi |6 +

[PATCH v3 1/9] ARM: tegra: Add function to read chipid

2013-01-04 Thread Prashant Gaikwad
Add function to read chip id from APB MISC registers. This function will also get called from clock driver to flush write operations on apb bus. Signed-off-by: Prashant Gaikwad pgaik...@nvidia.com --- arch/arm/mach-tegra/fuse.c | 12 ++-- include/linux/tegra-soc.h | 22

[PATCH v3 8/9] arm: tegra: Migrate to new clock code

2013-01-04 Thread Prashant Gaikwad
Migrate tegra clock support to drivers/clk/tegra, this involves moving 1. definition of tegra_cpu_car_ops to clk.c 2. definition of reset functions to clk-peripheral.c 3. change parent of cpu clock. 4. Remove legacy clock initialization. 5. Initialize clocks using DT. 6. Remove all instance of

[PATCH v3 3/9] arm: tegra: Move tegra_cpu_car.h to linux/clk/tegra.h

2013-01-04 Thread Prashant Gaikwad
tegra_cpu_car_ops struct is going to be accessed from drivers/clk/tegra. Move the tegra_cpu_car_ops to include/linux/clk/tegra.h. Signed-off-by: Prashant Gaikwad pgaik...@nvidia.com --- arch/arm/mach-tegra/clock.c|2 +- arch/arm/mach-tegra/cpuidle-tegra30.c

[PATCH v3 4/9] ARM: tegra: Define Tegra20 CAR binding

2013-01-04 Thread Prashant Gaikwad
From: Stephen Warren swar...@nvidia.com The Tegra20 CAR (Clock And Reset) Controller controls most aspects of most clocks within Tegra20. The device tree binding models this as a single monolithic clock provider, which exports many clocks. This reduces the number of nodes needed in device tree to

[PATCH 1/7] ARM: dt: tegra20: Add clock information

2013-01-04 Thread Prashant Gaikwad
Add clock information to device nodes. Signed-off-by: Prashant Gaikwad pgaik...@nvidia.com --- Tested on Ventana (Tegra20) and Cardhu (Tegra30). This series depends on ccf-rework patch series. --- arch/arm/boot/dts/tegra20.dtsi | 41 1 files changed, 41

[PATCH 4/7] arm: tegra20: remove auxdata

2013-01-04 Thread Prashant Gaikwad
Remove AUXDATA as clock are initialized from device node. Signed-off-by: Prashant Gaikwad pgaik...@nvidia.com --- arch/arm/mach-tegra/board-dt-tegra20.c | 24 1 files changed, 0 insertions(+), 24 deletions(-) diff --git a/arch/arm/mach-tegra/board-dt-tegra20.c

[PATCH 6/7] clk: tegra20: remove unused TEGRA_CLK_DUPLICATE()s

2013-01-04 Thread Prashant Gaikwad
With device tree support added for Tegra clocks look up is done from device tree, remove unused TEGRA_CLK_DUPLICATE()s. Signed-off-by: Prashant Gaikwad pgaik...@nvidia.com --- drivers/clk/tegra/clk-tegra20.c | 17 - 1 files changed, 0 insertions(+), 17 deletions(-) diff --git

[PATCH 2/7] ARM: dt: tegra30: Add clock information

2013-01-04 Thread Prashant Gaikwad
Add clock information to device nodes. Signed-off-by: Prashant Gaikwad pgaik...@nvidia.com --- arch/arm/boot/dts/tegra30.dtsi | 52 +++- 1 files changed, 51 insertions(+), 1 deletions(-) diff --git a/arch/arm/boot/dts/tegra30.dtsi

[PATCH 5/7] arm: tegra30: remove auxdata

2013-01-04 Thread Prashant Gaikwad
Remove AUXDATA as clocks are initialized from device node. Signed-off-by: Prashant Gaikwad pgaik...@nvidia.com --- arch/arm/mach-tegra/board-dt-tegra30.c | 31 +-- 1 files changed, 1 insertions(+), 30 deletions(-) diff --git a/arch/arm/mach-tegra/board-dt-tegra30.c

[PATCH 7/7] clk: tegra30: remove unused TEGRA_CLK_DUPLICATE()s

2013-01-04 Thread Prashant Gaikwad
With device tree support added for Tegra clocks look up is done from device tree, remove unused TEGRA_CLK_DUPLICATE()s. Signed-off-by: Prashant Gaikwad pgaik...@nvidia.com --- drivers/clk/tegra/clk-tegra30.c | 34 -- 1 files changed, 0 insertions(+), 34

Re: linux-next: build failure after merge of the pekey tree

2013-01-04 Thread David Howells
Stephen Rothwell s...@canb.auug.org.au wrote: After merging the pekey tree, today's linux-next build (x86_64 allmodconfig) failed like this: ERROR: modsign_keyring [crypto/asymmetric_keys/pefile_key_parser.ko] undefined! Interesting. That first one isn't due to a missing

[PATCH 3/7] ASoC: tegra: remove auxdata

2013-01-04 Thread Prashant Gaikwad
Configlink clock information is added to device tree. Get the clocks using device node. Remove AUXDATA. Signed-off-by: Prashant Gaikwad pgaik...@nvidia.com --- sound/soc/tegra/tegra30_ahub.c | 14 ++ 1 files changed, 2 insertions(+), 12 deletions(-) diff --git

Re: [PATCH][trivial] xtensa: Fix home page URL in Kconfig

2013-01-04 Thread Jiri Kosina
On Fri, 4 Jan 2013, Masanari Iida wrote: This home page address has moved to new one. Signed-off-by: Masanari Iida standby2...@gmail.com --- arch/xtensa/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/xtensa/Kconfig b/arch/xtensa/Kconfig index

[PATCH V2 1/2] ASoC: davinci-mcasp: Add pinctrl support

2013-01-04 Thread Hebbar Gururaja
From: Hebbar, Gururaja gururaja.heb...@ti.com Signed-off-by: Hebbar, Gururaja gururaja.heb...@ti.com --- Changes in V2 - no change :100644 100644 55e2bf6... 83d96eb... M sound/soc/davinci/davinci-mcasp.c sound/soc/davinci/davinci-mcasp.c |7 +++ 1 file changed, 7 insertions(+)

[PATCH V2 0/2] ARM/ASoC: Davinci: Device Tree Update

2013-01-04 Thread Hebbar Gururaja
1. Add pinctrl for McASP Module 2. Add DT support for Davinci machine platform This patch-set is tested on Davinci platform (DA850 EVM). This series applies on top of tag next-20130103 git tree https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git These patches cannot be tested

[PATCH V2 2/2] ASoC: Davinci: machine: Add device tree binding

2013-01-04 Thread Hebbar Gururaja
From: Hebbar, Gururaja gururaja.heb...@ti.com Device tree support for Davinci Machine driver When the board boots with device tree, the driver will receive card, codec, dai interface details (like the card name, DAPM routing map, phandle for the audio components described in the dts file, codec

Re: [PATCH] [trivial] h8300: Fix home page URL in h8300/README

2013-01-04 Thread Jiri Kosina
On Fri, 4 Jan 2013, Masanari Iida wrote: Correct home page URL in h8300/README. Signed-off-by: Masanari Iida standby2...@gmail.com --- arch/h8300/README | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/h8300/README b/arch/h8300/README index 637f5a0..efa805f

Re: [PATCH] sound: Add support for Creative BT-D1 via usb sound quirks

2013-01-04 Thread Takashi Iwai
At Thu, 03 Jan 2013 12:59:07 +0100, Alexander Schremmer wrote: On 03.01.2013 10:58, Takashi Iwai wrote: Thanks for the patch. The changes look OK, but could you fix trivial coding issues reported by scripts/checkpatch.pl and resend? Oops, my sending workflow ate the tabs, here it is

Re: Tux3 report: New news for the new year

2013-01-04 Thread OGAWA Hirofumi
Tero Roponen tero.ropo...@gmail.com writes: martin@merkaba:~[…] sudo ./tux3fuse tux3.img /mnt/zeit [sudo] password for martin: martin@merkaba:~[…] mount | grep fuse fusectl on /sys/fs/fuse/connections type fusectl (rw,relatime) tux3.img on /mnt/zeit type fuse.tux3.img

Re: [RFC v2 6/8] gpu: drm: tegra: Remove redundant host1x

2013-01-04 Thread Terje Bergström
On 21.12.2012 23:19, Stephen Warren wrote: I see the situation more like: * There's host1x hardware. * There's a low-level driver just for host1x itself; the host1x driver. * There's a high-level driver for the entire host1x complex of devices. That is tegradrm. There may be more

Re: [PATCH v2 22/44] metag: Time keeping

2013-01-04 Thread Vineet Gupta
Hi James, On Wednesday 05 December 2012 09:38 PM, James Hogan wrote: +static unsigned int hwtimer_freq = HARDWARE_FREQ; +static DEFINE_PER_CPU(struct clock_event_device, local_clockevent); +static DEFINE_PER_CPU(char [11], local_clockevent_name); +void __cpuinit local_timer_setup(unsigned

Re: [PATCH 0/3] power: bq2415x_charger: Some cleanup

2013-01-04 Thread Sachin Kamat
Hi, On 27 November 2012 11:28, Sachin Kamat sachin.ka...@linaro.org wrote: This series is build tested againt the linux-next tree (20121126) Sachin Kamat (3): power: bq2415x_charger: Remove unneeded version.h inclusion power: bq2415x_charger: Use module_i2c_driver power:

Fwd: Linux - AMD SB950 USB Regression

2013-01-04 Thread dAgeCKo
Hello, Some months ago I noticed that my USB controler (and also my network controler) does not work anymore on newer kernels from my debian wheezy distribution. I then reported a bug for the former one here: https://bugzilla.kernel.org/show_bug.cgi?id=47791 With some helps and time, I could

Re: What is asmlinkage ?

2013-01-04 Thread anish singh
On Fri, Jan 4, 2013 at 3:41 PM, Rajat Sharma fs.ra...@gmail.com wrote: Is this correct for all architectures? I guess not, asmlinkage is undefined for arm, so I assume this mechanism is not there for arm. then how do they do it? On Fri, Jan 4, 2013 at 2:24 PM, 卜弋天 bu...@live.cn wrote:

Re: 3.8-rc2: EFI framebuffer lock inversion...

2013-01-04 Thread Sedat Dilek
On Thu, Jan 3, 2013 at 3:39 PM, Daniel J Blueman dan...@quora.org wrote: On 3 January 2013 22:11, Sedat Dilek sedat.di...@gmail.com wrote: Hi Daniel, just wanted to test the fb-fix [2] from Alan and followed the thread in [1]. Me is also working with i915 KMS. I looked at nouveau KMS driver

[PATCH 0/4] input: keyboard: tegra: cleanups and DT supports

2013-01-04 Thread Laxman Dewangan
This patch series: - fix build warning, - use devm_* for allocation, - make column/rows configuration through DT and - remove the rarely used key mapping table. Laxman Dewangan (4): input: keyboard: tegra: fix build warning input: keyboard: tegra: use devm_* for resource allocation

[PATCH 3/4] input: keyboard: tegra: add support for rows/cols configuration from dt

2013-01-04 Thread Laxman Dewangan
The NVIDIA's Tegra KBC has maximum 24 pins to make matrix keypad. Any pin can be configured as row or column. The maximum column pin can be 8 and maximum row pin can be 16. Remove the assumption that all first 16 pins will be used as row and remaining as columns and Add the property for

[PATCH 1/4] input: keyboard: tegra: fix build warning

2013-01-04 Thread Laxman Dewangan
Fix the following build warning when building driver with CONFIG_PM_SLEEP not selected. tegra-kbc.c:360:13: warning: 'tegra_kbc_set_keypress_interrupt' defined but not used [-Wunused-function] Signed-off-by: Laxman Dewangan ldewan...@nvidia.com --- drivers/input/keyboard/tegra-kbc.c | 24

[PATCH 2/4] input: keyboard: tegra: use devm_* for resource allocation

2013-01-04 Thread Laxman Dewangan
Use devm_* for memory, clock, input device allocation. This reduces code for freeing these resources. Signed-off-by: Laxman Dewangan ldewan...@nvidia.com --- drivers/input/keyboard/tegra-kbc.c | 93 +++- 1 files changed, 28 insertions(+), 65 deletions(-) diff

[PATCH 4/4] input: keyboard: tegra: remove default key mapping

2013-01-04 Thread Laxman Dewangan
Tegra KBC driver have the default key mapping for 16x8 configuration. The key mapping can be provided through platform data or through DT and the mapping varies from platform to platform, hence this default mapping is not so useful. Remove the default mapping to reduce the code lines of the

[PATCH] ARM: tegra: config: enable KEYBOARD_TEGRA

2013-01-04 Thread Laxman Dewangan
Signed-off-by: Laxman Dewangan ldewan...@nvidia.com --- arch/arm/configs/tegra_defconfig |1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/arch/arm/configs/tegra_defconfig b/arch/arm/configs/tegra_defconfig index 0becd9f..c14a9fb 100644 ---

[PATCH] ARM: DT: tegra: add DT entry for KBC controller

2013-01-04 Thread Laxman Dewangan
NVIDIA's Tegra SoCs have the matrix keyboard controller which supports 16x8 type of matrix. The number of rows and columns are configurable. Add DT entry for KBC controller. Signed-off-by: Laxman Dewangan ldewan...@nvidia.com --- arch/arm/boot/dts/tegra20.dtsi |7 +++

Re: [PATCH V2 Resend 3/4] workqueue: Schedule work on non-idle cpu instead of current one

2013-01-04 Thread Viresh Kumar
Hi Tejun, On 27 November 2012 10:49, Viresh Kumar viresh.ku...@linaro.org wrote: On 26 November 2012 22:45, Tejun Heo t...@kernel.org wrote: On Tue, Nov 06, 2012 at 04:08:45PM +0530, Viresh Kumar wrote: I'm pretty skeptical about this. queue_work() w/o explicit CPU assignment has always

Re: radeon 0000:02:00.0: GPU lockup CP stall for more than 10000msec

2013-01-04 Thread Boszormenyi Zoltan
2013-01-04 08:40 keltezéssel, Borislav Petkov írta: On Wed, Jan 02, 2013 at 06:37:23PM -0500, Alex Deucher wrote: From: Alex Deucher alexander.deuc...@amd.com Date: Wed, 2 Jan 2013 18:30:21 -0500 Subject: [PATCH] drm/radeon/r6xx: fix DMA engine for ttm bo transfers count must be a multiple of

Re: Regression: Bacula jobs fail with kernel 3.8-rc1

2013-01-04 Thread Tilman Schmidt
On 31.12.2012 16:07, /me wrote: With kernel 3.8-rc1, my nightly Bacula backup job reproducibly aborts 20 minutes into spooling with a broken pipe error on the network socket connecting the file and storage daemons: [...] Returning to kernel 3.7.1 makes it work again. Update/correction: in the

Re: [PATCH v3 0/9] Migrate Tegra to common clock framework

2013-01-04 Thread Joseph Lo
On Fri, 2013-01-04 at 17:40 +0800, Prashant Gaikwad wrote: This patchset does following: 1. Decompose single tegra clock structure into multiple clocks. 2. Try to use standard clock types supported by common clock framework. 3. Use dynamic initialization. 4. Move all clock code to

Re: [PATCH 1/7] ARM: dt: tegra20: Add clock information

2013-01-04 Thread Joseph Lo
On Fri, 2013-01-04 at 17:46 +0800, Prashant Gaikwad wrote: Add clock information to device nodes. Signed-off-by: Prashant Gaikwad pgaik...@nvidia.com --- Tested on Ventana (Tegra20) and Cardhu (Tegra30). This series depends on ccf-rework patch series. --- This series : Tested-by: Joseph

Re: [PATCH 1/3] cpufreq: Manage only online cpus

2013-01-04 Thread Rafael J. Wysocki
On Friday, January 04, 2013 10:44:36 AM Viresh Kumar wrote: On 3 January 2013 17:32, Rafael J. Wysocki r...@sisk.pl wrote: True, but have those bugs been introduced recently (ie. in v3.8-rc1 or later)? Don't know... I feel they were always there, its just that nobody tested it that way

Re: [Alternative 2][PATCH] ACPI / PCI: Set root bridge ACPI handle in advance

2013-01-04 Thread Rafael J. Wysocki
On Thursday, January 03, 2013 06:00:38 PM Bjorn Helgaas wrote: On Thu, Jan 03, 2013 at 11:56:55PM +0100, Rafael J. Wysocki wrote: OK, I now have sent no less than three working version of the patch that fixes the current code which _is_ insane. You haven't even responded to the last

Re: [PATCH v7u1 31/31] x86, 64bit, mm: hibernate use generic mapping_init

2013-01-04 Thread Rafael J. Wysocki
On Thursday, January 03, 2013 04:48:51 PM Yinghai Lu wrote: Make it only map range in pfn_mapped array. Can you please explain why that should be sufficient? Have you tested it? and it has kernel mapping with EXEC. That's because it needs to execute code from one of those pages and it

Re: [PATCH V2 1/2] ASoC: davinci-mcasp: Add pinctrl support

2013-01-04 Thread Mark Brown
On Fri, Jan 04, 2013 at 03:24:36PM +0530, Hebbar Gururaja wrote: From: Hebbar, Gururaja gururaja.heb...@ti.com Signed-off-by: Hebbar, Gururaja gururaja.heb...@ti.com Linus has a change for this in the core which currently looks like it'll get merged in v3.8 so there doesn't seem to be any

Re: sched: Consequences of integrating the Per Entity Load Tracking Metric into the Load Balancer

2013-01-04 Thread Mike Galbraith
On Thu, 2013-01-03 at 16:08 +0530, Preeti U Murthy wrote: Hi Mike, Thank you very much for your feedback.Considering your suggestions,I have posted out a proposed solution to prevent select_idle_sibling() from becoming a disadvantage to normal load balancing,rather aiding it. **This

Re: Add #includes needed to permit the removal of asm/system.h - sha1 96f951edb1f1bdbbc99b0cd458f9808bb83d58ae

2013-01-04 Thread Michal Simek
2013/1/3 David Howells dhowe...@redhat.com: Michal Simek mon...@monstr.eu wrote: It is because microblaze uses cmpxchg_local which is defined asm-generic/atomic.h file. Arnds patch has added it to atomic.h asm-generic: add generic atomic.h and io.h (sha1:

Re: [PATCH 29/49] mm: numa: Add pte updates, hinting and migration stats

2013-01-04 Thread Simon Jeons
On Fri, 2012-12-07 at 10:23 +, Mel Gorman wrote: It is tricky to quantify the basic cost of automatic NUMA placement in a meaningful manner. This patch adds some vmstats that can be used as part of a basic costing model. Hi Gorman, u= basic unit = sizeof(void *) Ca = cost of

[PATCH] nfsd: Remove write permission from file content

2013-01-04 Thread ycnian
From: Yanchuan Nian ycn...@gmail.com The write function doesn't be implemented in file content, and it's meaningless to write data into this file directly. Remove write permission from it. Signed-off-by: Yanchuan Nian ycn...@gmail.com --- net/sunrpc/cache.c |2 +- 1 files changed, 1

Re: [PATCH] RFC: leds-pwm: don't disable pwm when setting brightness to 0

2013-01-04 Thread Sascha Hauer
On Thu, Jan 03, 2013 at 10:01:18AM +0100, Thierry Reding wrote: On Thu, Oct 25, 2012 at 04:03:49PM +0800, Shawn Guo wrote: On Wed, Oct 24, 2012 at 03:52:46PM +0200, Uwe Kleine-König wrote: This fixes disabling the LED on i.MX28. The PWM hardware delays using the newly set pwm-config until

Re: [PATCH 25/49] mm: numa: Add fault driven placement and migration

2013-01-04 Thread Simon Jeons
On Fri, 2012-12-07 at 10:23 +, Mel Gorman wrote: From: Peter Zijlstra a.p.zijls...@chello.nl NOTE: This patch is based on sched, numa, mm: Add fault driven placement and migration policy but as it throws away all the policy to just leave a basic foundation I had to drop the

Re: [PATCH v2 05/11] ARM: dt: tegra30: Add device node for APB MISC

2013-01-04 Thread Laxman Dewangan
On Friday 04 January 2013 09:30 AM, Stephen Warren wrote: On 01/03/2013 08:23 PM, Prashant Gaikwad wrote: On Friday 04 January 2013 08:35 AM, Stephen Warren wrote: On 01/03/2013 06:48 PM, Prashant Gaikwad wrote: On Thursday 03 January 2013 09:41 PM, Stephen Warren wrote: ... OK. It sounds

Re: [PATCH net-next] softirq: reduce latencies

2013-01-04 Thread Sedat Dilek
On Fri, Jan 4, 2013 at 5:41 AM, Eric Dumazet eric.duma...@gmail.com wrote: On Thu, 2013-01-03 at 11:41 -0800, Rick Jones wrote: In terms of netperf overhead, once you specify P99_LATENCY, you are already in for the pound of cost but only getting the penny of output (so to speak). While it

Re: mmap() scalability in the presence of the MAP_POPULATE flag

2013-01-04 Thread Michel Lespinasse
On Fri, Jan 04, 2013 at 12:09:37AM +0700, Roman Dubtsov wrote: On Wed, 2013-01-02 at 16:09 -0800, Michel Lespinasse wrote: Is there an interest in fixing this or concurrent mmaps() from the same process are too much of a corner case to worry about it? Funny this comes up again. I

[PATCH] drm/i915: Treat crtc-mode.clock == 0 as disabled

2013-01-04 Thread Chris Wilson
Prevent a divide-by-zero by consistently treating an 'active' CRTC without a mode set as actually disabled. --- drivers/gpu/drm/i915/intel_pm.c | 22 +- 1 file changed, 13 insertions(+), 9 deletions(-) diff --git a/drivers/gpu/drm/i915/intel_pm.c

Re: [PATCH 2/2] Revert nohz: Fix idle ticks in cpu summary line of /proc/stat (commit 7386cdbf2f57ea8cff3c9fde93f206e58b9fe13f).

2013-01-04 Thread Sergei Shtylyov
Hello. On 04-01-2013 6:58, Srivatsa Vaddagiri wrote: With offline cpus no longer beeing seen in nohz mode (ts-idle_active=0), we don't need the check for cpu_online() introduced in commit 7386cdbf. Offline Please also specify the summary of that commit in parens (or however you like).

Re: [PATCH v2 22/44] metag: Time keeping

2013-01-04 Thread James Hogan
On 04/01/13 10:05, Vineet Gupta wrote: Hi James, On Wednesday 05 December 2012 09:38 PM, James Hogan wrote: +static unsigned int hwtimer_freq = HARDWARE_FREQ; +static DEFINE_PER_CPU(struct clock_event_device, local_clockevent); +static DEFINE_PER_CPU(char [11], local_clockevent_name);

Re: [PATCH V2 2/2] ASoC: Davinci: machine: Add device tree binding

2013-01-04 Thread Mark Brown
On Fri, Jan 04, 2013 at 03:24:37PM +0530, Hebbar Gururaja wrote: + MIC3L,Mic Bias 2V, + MIC3R,Mic Bias 2V, + Mic Bias 2V, Mic Jack, The CODEC driver biases should be changed over to be supplies, this makes the above

[PATCH] pnfs: Increase the refcount when LAYOUTGET fails the first time

2013-01-04 Thread ycnian
From: Yanchuan Nian ycn...@gmail.com The layout will be set unusable if LAYOUTGET fails. Is it reasonable to increase the refcount iff LAYOUTGET fails the first time? Signed-off-by: Yanchuan Nian ycn...@gmail.com --- fs/nfs/pnfs.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-)

drm/nouveau E[ DRM] fail ttm_validate

2013-01-04 Thread Kees Bakker
Hi, Right after I upgraded to Ubuntu quantal I started seeing these messages: Jan 4 12:18:12 koli kernel: [ 3705.970720] nouveau E[ DRM] fail ttm_validate Jan 4 12:18:12 koli kernel: [ 3705.970726] nouveau E[ DRM] validate vram_list Jan 4 12:18:12 koli kernel: [ 3705.970760] nouveau

Re: Oops on aoe module removal

2013-01-04 Thread Josh Boyer
On Thu, Jan 03, 2013 at 04:00:46PM -0500, Josh Boyer wrote: On Thu, Jan 03, 2013 at 02:50:46PM -0600, Ed Cashin wrote: The blk_alloc_queue has already done a bdi_init, so do not bdi_init again in aoeblk_gdalloc. The patch below applies to v3.5.6, with its v47 aoe driver. On my

Re: [PATCH v2 22/44] metag: Time keeping

2013-01-04 Thread Vineet Gupta
On Friday 04 January 2013 05:51 PM, James Hogan wrote: On 04/01/13 10:05, Vineet Gupta wrote: I have a kludge in ARC port in this subsystem - which I hope you could help clear. ARC also has a local timer device used for clockevent on each CPU. A one-time setup_irq() with IRQF_PERCPU -

  1   2   3   4   5   6   7   8   >