Re: [PATCH v7 1/2] can: xilinx CAN controller support

2014-04-06 Thread Michal Simek
On 04/02/2014 03:13 PM, Kedareswara rao Appana wrote: > This patch adds xilinx CAN controller support. > This driver supports both ZYNQ CANPS and Soft IP > AXI CAN controller. > > Signed-off-by: Kedareswara rao Appana > --- > Changes for v7: > - Updated the driver with review comments. > - Moved

[PATCH] sdhci: Forward EPROBE_DEFER on vmmc and vqmmc regulators

2014-04-06 Thread Mike Looijmans
If vmmc or vqmmc regulators are controlled by an I2C device, the request for the regulator is likely to fail because the I2C bus has not been probed yet. The sdhci then incorrectly assumes that the user never wanted to use a regulator anyway and continues without ever enabling or configuring the re

Re: [PATCH] arm, kvm: fix double lock on cpu_add_remove_lock

2014-04-06 Thread Srivatsa S. Bhat
On 04/06/2014 11:06 PM, Ming Lei wrote: > The patch of "arm, kvm: Fix CPU hotplug callback registration" > in -next tree holds the lock before calling the two functions: > > kvm_vgic_hyp_init() > kvm_timer_hyp_init() > > and both the two functions are calling register_cpu_notifier() >

[PATCH] sdhci: Forward EPROBE_DEFER on vmmc and vqmmc regulators

2014-04-06 Thread Mike Looijmans
If vmmc or vqmmc regulators are controlled by an I2C device, the request for the regulator is likely to fail because the I2C bus has not been probed yet. The sdhci then incorrectly assumes that the user never wanted to use a regulator anyway and continues without ever enabling or configuring the re

[patch] clk: st: NULL dereference on error in st_of_clkgen_vcc_setup()

2014-04-06 Thread Dan Carpenter
There are two allocations where, if they fail, then we end up dereferencing the NULL pointer in the error handling code. Fixes: 94885faf9dbc ('clk: st: Support for DIVMUX and PreDiv Clocks') Signed-off-by: Dan Carpenter diff --git a/drivers/clk/st/clkgen-mux.c b/drivers/clk/st/clkgen-mux.c index

Re: [PATCH 0/5] Volatile Ranges (v12) & LSF-MM discussion fodder

2014-04-06 Thread Minchan Kim
On Wed, Apr 02, 2014 at 03:27:44PM -0400, Johannes Weiner wrote: > On Wed, Apr 02, 2014 at 08:31:13PM +0200, Andrea Arcangeli wrote: > > Hi everyone, > > > > On Tue, Apr 01, 2014 at 09:03:57PM -0700, John Stultz wrote: > > > So between zero-fill and SIGBUS, I think SIGBUS makes the most sense. If

Re: [PATCH v2] axs_nand - add driver for NAND controller used on Synopsys AXS dev boards

2014-04-06 Thread Alexey Brodkin
Hi Ezequiel, On Fri, 2014-04-04 at 11:09 -0300, Ezequiel Garcia wrote: > On Apr 04, Alexey Brodkin wrote: > > Signed-off-by: Alexey Brodkin > > > > Maybe it would be nice adding some driver description here, so the commit > log actually says something useful about the commit. Well, I thought a

Re: [PATCH v8 00/10] qspinlock: a 4-byte queue spinlock with PV support

2014-04-06 Thread Raghavendra K T
On 04/02/2014 06:57 PM, Waiman Long wrote: N.B. Sorry for the duplicate. This patch series were resent as the original one was rejected by the vger.kernel.org list server due to long header. There is no change in content. v7->v8: - Remove one unneeded atomic operation from the slo

Re: [PATCH 0/5] Volatile Ranges (v12) & LSF-MM discussion fodder

2014-04-06 Thread Minchan Kim
Hello Andrea, On Wed, Apr 02, 2014 at 08:31:13PM +0200, Andrea Arcangeli wrote: > Hi everyone, > > On Tue, Apr 01, 2014 at 09:03:57PM -0700, John Stultz wrote: > > So between zero-fill and SIGBUS, I think SIGBUS makes the most sense. If > > you have a third option you're thinking of, I'd of cours

Re: [RFC PATCH] virtio-net: reset virtqueue affinity when doing cpu hotplug

2014-04-06 Thread Igor Mammedov
On Thu, 27 Dec 2012 11:43:30 +0800 Wanlong Gao wrote: > On 12/27/2012 11:28 AM, Jason Wang wrote: > > On 12/26/2012 06:19 PM, Wanlong Gao wrote: > >> On 12/26/2012 06:06 PM, Jason Wang wrote: > >>> On 12/26/2012 03:06 PM, Wanlong Gao wrote: > Add a cpu notifier to virtio-net, so that we can

Re: [PATCH 06/10] ARM: EXYNOS: Add support for mapping PMU base address via DT

2014-04-06 Thread Michal Simek
On 04/05/2014 12:58 PM, Pankaj Dubey wrote: > On 04/03/2014 06:07 PM, Sylwester Nawrocki wrote: >> On 02/04/14 14:15, Michal Simek wrote: There were some patches posted for syscon to make it available in earlier system initialization stage: https://lkml.org/lkml/2014/2/19/218 >>> I haven'

Re: [PATCH v2 2/5] ARM: zynq: dt: Convert to preprocessor includes

2014-04-06 Thread Michal Simek
Hi Soren, On 04/05/2014 01:14 AM, Soren Brinkmann wrote: > Convert all Zynq DT files to the dtc preprocessor include syntax. > This allows to include header files in the devicetrees like other > SoC-types already do. > > Inspired-by: Steffen Trumtrar > (http://www.spinics.net/lists/arm-kernel/ms

Re: 3.14 tc oops

2014-04-06 Thread Cong Wang
On Thu, Apr 3, 2014 at 9:24 AM, Cong Wang wrote: > On Wed, Apr 2, 2014 at 7:24 AM, Kelly Anderson wrote: >> Hi, >> >> I hit a kernel oops when starting traffic control on my armv7 router, I don't >> think the architecture is related, the same tc code worked perfectly with >> earlier kernel versio

Re: [PATCH v5 3/3] ARM: zynq: dt: Add I2C nodes to Zynq device tree

2014-04-06 Thread Michal Simek
On 04/04/2014 11:27 PM, Soren Brinkmann wrote: > Signed-off-by: Soren Brinkmann > Tested-by: Michal Simek > --- > > Changes in v5: > - use lower case hex digits in 'reg' property > > Changes in v4: None > Changes in v3: None > Changes in v2: > - replace 'pmbus' with 'ti' in compatibility stri

Re: [PATCH 0/5] Volatile Ranges (v12) & LSF-MM discussion fodder

2014-04-06 Thread Minchan Kim
On Wed, Apr 02, 2014 at 10:40:16AM -0700, John Stultz wrote: > On Wed, Apr 2, 2014 at 9:36 AM, Johannes Weiner wrote: > > On Tue, Apr 01, 2014 at 09:12:44PM -0700, John Stultz wrote: > >> On 04/01/2014 04:01 PM, Dave Hansen wrote: > >> > On 04/01/2014 02:35 PM, H. Peter Anvin wrote: > >> >> On 04/

Re: [PATCH v2 1/5] ARM: zynq: DT: Add 'clock-latency' property

2014-04-06 Thread Michal Simek
On 04/05/2014 01:14 AM, Soren Brinkmann wrote: > Specify the 'clock-latency' property to avoid certain cpufreq governors > from refusing to work with the following error: > ondemand governor failed, too long transition latency of HW, fallback to > performance governor > > Reported-by: Mike Looi

Re: [PATCH -tip ] [BUGFIX] perf/probe: Fix to handle errors in line_range searching

2014-04-06 Thread Namhyung Kim
On Sun, 6 Apr 2014 14:52:48 +0200, Jiri Olsa wrote: > On Wed, Apr 02, 2014 at 02:48:31PM +0900, Masami Hiramatsu wrote: >> As Namhyung reported(https://lkml.org/lkml/2014/4/1/89), >> current perf-probe -L option doesn't handle errors in line-range >> searching correctly. It causes a SEGV if an erro

Re: [tip:sched/core] sched/numa: Move task_numa_free() to __put_task_struct()

2014-04-06 Thread Mike Galbraith
On Sun, 2014-04-06 at 15:17 -0400, Sasha Levin wrote: > On 03/11/2014 08:40 AM, tip-bot for Mike Galbraith wrote: > > Commit-ID: 156654f491dd8d52687a5fbe1637f472a52ce75b > > Gitweb: > > http://git.kernel.org/tip/156654f491dd8d52687a5fbe1637f472a52ce75b > > Author: Mike Galbraith > > Aut

Re: [PATCH 1/4] perf: Allow ability to map cpus to nodes easily

2014-04-06 Thread Namhyung Kim
On Sun, 6 Apr 2014 14:15:46 +0200, Jiri Olsa wrote: > On Thu, Apr 03, 2014 at 02:48:51PM +0900, Namhyung Kim wrote: >> More generally, this sysfs access needs to check actual mountpoint using >> sysfs__mountpoint() IMHO. >> >> Also this API can be generalized like reading int value from a sysfs >>

Re: [PATCH 0/5] Volatile Ranges (v12) & LSF-MM discussion fodder

2014-04-06 Thread Minchan Kim
On Wed, Apr 02, 2014 at 12:36:38PM -0400, Johannes Weiner wrote: > On Tue, Apr 01, 2014 at 09:12:44PM -0700, John Stultz wrote: > > On 04/01/2014 04:01 PM, Dave Hansen wrote: > > > On 04/01/2014 02:35 PM, H. Peter Anvin wrote: > > >> On 04/01/2014 02:21 PM, Johannes Weiner wrote: > > >>> Either way

RE: [RFC/PATCH] mtd: ubi: Test return value of __wl_get_peb

2014-04-06 Thread Dolev Raviv
Reviewed-by: Dolev Raviv Thanks, Dolev -- QUALCOMM ISRAEL, on behalf of Qualcomm Innovation Center, Inc. is a member of Code Aurora Forum, hosted by The Linux Foundation -Original Message- From: linux-mtd [mailto:linux-mtd-boun...@lists.infradead.org] On Behalf Of Tanya Brokhman Sent:

RE: [RFC/PATCH] mtd: ubi: Free peb's synchronously for fastmap

2014-04-06 Thread Dolev Raviv
Reviewed-by: Dolev Raviv Thanks, Dolev -- QUALCOMM ISRAEL, on behalf of Qualcomm Innovation Center, Inc. is a member of Code Aurora Forum, hosted by The Linux Foundation -Original Message- From: linux-mtd [mailto:linux-mtd-boun...@lists.infradead.org] On Behalf Of Tanya Brokhman Sent:

RE: [RFC/PATCH] mtd: ubi: Fix ubi free PEBs count calculation

2014-04-06 Thread Dolev Raviv
Reviewed-by: Dolev Raviv Thanks, Dolev -- QUALCOMM ISRAEL, on behalf of Qualcomm Innovation Center, Inc. is a member of Code Aurora Forum, hosted by The Linux Foundation -Original Message- From: linux-mtd [mailto:linux-mtd-boun...@lists.infradead.org] On Behalf Of Tanya Brokhman Sent: T

Re: [PATCH V2 0/8] cpusets: Isolate CPUs via sysfs using cpusets

2014-04-06 Thread Viresh Kumar
On 7 April 2014 10:34, Mike Galbraith wrote: > Yes, both on and off is kinda hard to do per cpu :) Correct.. would get it fixed in V3.. -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majord...@vger.kernel.org More majordomo info at http://v

Re: [PATCH 3/4] perf, callchain: Add generic report parse callchain callback function

2014-04-06 Thread Namhyung Kim
Hi Jiri and Don, On Sun, 6 Apr 2014 14:11:29 +0200, Jiri Olsa wrote: > On Fri, Apr 04, 2014 at 03:31:19PM -0400, Don Zickus wrote: >> On Thu, Apr 03, 2014 at 02:57:32PM +0900, Namhyung Kim wrote: >> > On Mon, 24 Mar 2014 15:32:56 -0400, Don Zickus wrote: >> > > This takes the parse_callchain_opt f

linux-next: Tree for Apr 7

2014-04-06 Thread Stephen Rothwell
Hi all, Please do not add material intended for v3.16 to your linux-next included branches until after v3.15-rc1 is released. This tree still fails (more than usual) the powerpc allyesconfig build. Changes since 20140403: Dropped trees: akpm-current, akpm (too complex conflicts) Removed tree:

info

2014-04-06 Thread Web Administrator
Kedves Email felhasználói, A postaláda túllépte a tárolási határérték, ami 20,00 GB-os, mint a rendszergazda által beállított, jelenleg futó 19,99 GB, lehet, hogy nem tud küldeni vagy fogadni új e-mail, amíg meg újból érvényesíti az e-mail mezo"be. Kérjük kattintson az alábbi linkre, hogy újbó

Re: [PATCH V2 0/8] cpusets: Isolate CPUs via sysfs using cpusets

2014-04-06 Thread Mike Galbraith
On Mon, 2014-04-07 at 09:41 +0530, Viresh Kumar wrote: > Hi Mike, > > On 6 April 2014 14:00, Mike Galbraith wrote: > > I wonder if adding a quiesce switch is really necessary. > > > > Seems to me that if you don't have load balancing turned off, you can't > > be very concerned about perturbation

Re: [PATCH] fs/ext4/extents_status.c: fix 64-bit number truncation bug

2014-04-06 Thread Chen Gang
On 04/07/2014 12:14 PM, Theodore Ts'o wrote: > On Sun, Apr 06, 2014 at 03:39:09PM +0200, Geert Uytterhoeven wrote: >> On Mon, Mar 31, 2014 at 3:16 PM, Chen Gang wrote: >>> '0x7FDEADBEEF' will be truncated to 32-bit number under unicore32. Need >>> append 'ULL' for it. >>> >>> The related warning

Re: [RFC PATCH] cmdline: Hide "debug" from /proc/cmdline

2014-04-06 Thread Rusty Russell
Linus Torvalds writes: > On Wed, Apr 2, 2014 at 3:12 PM, Mateusz Guzik wrote: >> >> Well, parsing kernel cmdline by systemd is a bad idea > > No, we very much expose /proc/cmdline for a reason. System services > are *supposed* to parse it, because it gives a unified way for people > to pass in va

linux-next: build failure after merge of the final tree

2014-04-06 Thread Stephen Rothwell
Hi all, After merging the final tree, today's linux-next build (powerpc allyesconfig) failed like this: fs/ocfs2/suballoc.c: In function 'ocfs2_block_group_set_bits': fs/ocfs2/suballoc.c:1357:2: error: implicit declaration of function 'trace_ocfs2_block_group_set_bits' [-Werror=implicit-function

[GIT PULL] f2fs updates for v3.15

2014-04-06 Thread Jaegeuk Kim
Hi Linus, This is a pull request on f2fs updates for v3.15. In this round, a couple of sysfs entries were introduced to tune the f2fs at runtime. In addition, f2fs starts to support large directory and f2fs_issue_flush thread to improve the performance under some server workloads. Most of the oth

linux-next: manual merge of the akpm-current tree with Linus' tree

2014-04-06 Thread Stephen Rothwell
Hi Andrew, Today's linux-next merge of the akpm-current tree got lots of conflicts with Linus' tree. I tried to fix things up, but it was a real mess and in the end I have just dropped your patch series until you can clean out what went to Linus. -- Cheers, Stephen Rothwells

Re: [PATCH] fs/ext4/extents_status.c: fix 64-bit number truncation bug

2014-04-06 Thread Theodore Ts'o
On Sun, Apr 06, 2014 at 03:39:09PM +0200, Geert Uytterhoeven wrote: > On Mon, Mar 31, 2014 at 3:16 PM, Chen Gang wrote: > > '0x7FDEADBEEF' will be truncated to 32-bit number under unicore32. Need > > append 'ULL' for it. > > > > The related warning (with allmodconfig under unicore32): > > > >

Re: [PATCH V2 0/8] cpusets: Isolate CPUs via sysfs using cpusets

2014-04-06 Thread Viresh Kumar
Hi Mike, On 6 April 2014 14:00, Mike Galbraith wrote: > I wonder if adding a quiesce switch is really necessary. > > Seems to me that if you don't have load balancing turned off, you can't > be very concerned about perturbation, so this should be tied into the > load balancing on/off switch as an

Re: [PATCH 01/11] random: don't feed stack data into pool when interrupt regs NULL

2014-04-06 Thread Theodore Ts'o
On Fri, Apr 04, 2014 at 06:54:47PM +0200, Sebastian Andrzej Siewior wrote: > And finally cycles which is random_get_entropy(). On ARM (as previously on > MIPS) this returns 0. Well not always but for all platforms which do not > implement register_current_timer_delay() which makes a lot of them. Y

Re: [PATCH 3.2 00/18] 3.2.57-rc1 review

2014-04-06 Thread Guenter Roeck
On 04/06/2014 04:35 PM, Ben Hutchings wrote: This is the start of the stable review cycle for the 3.2.57 release. There are 18 patches in this series, which will be posted as responses to this one. If anyone has any issues with these being applied, please let me know. Responses should be made b

[PATCH] staging: goldfish: Fix missing blank lines

2014-04-06 Thread Garret Kelly
Fix two instances of the following checkpatch warning: WARNING: Missing a blank line after declarations Signed-off-by: Garret Kelly --- drivers/staging/goldfish/goldfish_audio.c | 1 + drivers/staging/goldfish/goldfish_nand.c | 1 + 2 files changed, 2 insertions(+) diff --git a/drivers/staging

Re: f2fs: kernel BUG at fs/f2fs/segment.h:543

2014-04-06 Thread Jaegeuk Kim
2014-04-06 (일), 21:55 -0400, Sasha Levin: > On 04/06/2014 09:20 PM, Jaegeuk Kim wrote: > > Hi, > > > > Thank you for the report. > > > > If possible, could you share fsck.f2fs or dump.f2fs on the corrupted > > partition? > > > > Otherwise, how about this? > > # fdisk /dev/sdx > >> > p > > Hey J

[PATCH] Kbuild: move extra gcc check flags to the top Makefile

2014-04-06 Thread Masahiro Yamada
If W=... given to the command line, extra gcc check flags are added to KBUILD_CFLAGS. If we have such code in scripts/Makefile.build, the same flags are added to KBUILD_CFLAGS multiple times becuase scripts/Makefile.build is invoked every time Kbuild descends into the subdirectories. Signed-off-b

[f2fs-dev] [PATCH v2] f2fs: fix wrong statistics of inline data

2014-04-06 Thread Chao Yu
If we remove a file that has inline data after mount, our statistics turns to inaccurate. cat /sys/kernel/debug/f2fs/status - Inline_data Inode: 4294967295 Let's add stat_inc_inline_inode() to stat inline info of the file when lookup. Change log from v1: o stat in f2fs_lookup() instead of in

Re: [PATCH] [SCSI] FlashPoint: Fix non-ANSI function declaration

2014-04-06 Thread Khalid Aziz
On Mon, 2014-04-07 at 11:51 +0900, Daeseok Youn wrote: > sparse says: > non-ANSI function declaration of function 'FPT_SccbMgrTableInitAll' > > Signed-off-by: Daeseok Youn > --- > drivers/scsi/FlashPoint.c |2 +- > 1 files changed, 1 insertions(+), 1 deletions(-) > > diff --git a/drivers/s

[PATCH] staging: silicom: Add appropriate ifdef conditions in bpctl_mod.c

2014-04-06 Thread Daeseok Youn
The bp_proc_create() can be called if BP_PROC_SUPPORT is defined. Signed-off-by: Daeseok Youn --- drivers/staging/silicom/bpctl_mod.c |5 + 1 files changed, 5 insertions(+), 0 deletions(-) diff --git a/drivers/staging/silicom/bpctl_mod.c b/drivers/staging/silicom/bpctl_mod.c index 6b9

[PATCH] [SCSI] FlashPoint: Fix non-ANSI function declaration

2014-04-06 Thread Daeseok Youn
sparse says: non-ANSI function declaration of function 'FPT_SccbMgrTableInitAll' Signed-off-by: Daeseok Youn --- drivers/scsi/FlashPoint.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/drivers/scsi/FlashPoint.c b/drivers/scsi/FlashPoint.c index 5c74e4c..867b864 1006

[PATCH v3] support madvise(MADV_FREE)

2014-04-06 Thread Minchan Kim
Linux doesn't have an ability to free pages lazy while other OS already have been supported that named by madvise(MADV_FREE). The gain is clear that kernel can discard freed pages rather than swapping out or OOM if memory pressure happens. Without memory pressure, freed pages would be reused by u

[PATCH] staging: lustre: use NULL instead of 0 for pointer

2014-04-06 Thread Daeseok Youn
Signed-off-by: Daeseok Youn --- drivers/staging/lustre/lustre/obdclass/obd_mount.c | 18 ++ 1 files changed, 10 insertions(+), 8 deletions(-) diff --git a/drivers/staging/lustre/lustre/obdclass/obd_mount.c b/drivers/staging/lustre/lustre/obdclass/obd_mount.c index 6f8ba54..41

[PATCH v3] Staging: rtl8192e: Fix declaration of symbols

2014-04-06 Thread Joel Pelaez Jorge
The two declarations with issues in rtl_wx.h: * function: struct iw_statistics *r8192_get_wireless_stats(); * variable: extern struct iw_handler_def r8192_wx_handlers_def; The symbol 'r8192_get_wireless_stats' is declared as 'extern' but it is only used in the local scope. The declaration is

Re: [PATCH] Route keyboard LEDs through the generic LEDs layer.

2014-04-06 Thread Dmitry Torokhov
Hi Samuel, On Mon, Mar 31, 2014 at 02:23:23PM +0200, Samuel Thibault wrote: > This permits to reassign keyboard LEDs to something else than keyboard "leds" > state, by adding keyboard led and modifier triggers connected to a series > of VT input LEDs, themselves connected to VT input triggers, whi

Re: f2fs: kernel BUG at fs/f2fs/segment.h:543

2014-04-06 Thread Sasha Levin
On 04/06/2014 09:20 PM, Jaegeuk Kim wrote: > Hi, > > Thank you for the report. > > If possible, could you share fsck.f2fs or dump.f2fs on the corrupted > partition? > > Otherwise, how about this? > # fdisk /dev/sdx >> > p Hey Jaegeuk, Unfortunately it was a temporary filesystem inside the fuzz

Re: [PATCH 3.2 00/18] 3.2.57-rc1 review

2014-04-06 Thread Ben Hutchings
This is the combined patch for 3.2.57-rc1 relative to 3.2.56. Ben. -- Ben Hutchings Sturgeon's Law: Ninety percent of everything is crap. diff --git a/Makefile b/Makefile index ec90bfb..a27b228 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,7 @@ VERSION = 3 PATCHLEVEL = 2 -SUBLEVEL = 56 -EXTR

[PATCH] autofs4: check dev ioctl size before allocating

2014-04-06 Thread Ian Kent
From: Sasha Levin There wasn't any check of the size passed from userspace before trying to allocate the memory required. This meant that userspace might request more space than allowed, triggering an OOM. Signed-off-by: Sasha Levin Signed-off-by: Ian Kent --- fs/autofs4/dev-ioctl.c |3 +

Re: [PATCH 3.2 17/18] cifs: ensure that uncached writes handle unmapped areas correctly

2014-04-06 Thread Ben Hutchings
On Mon, 2014-04-07 at 00:35 +0100, Ben Hutchings wrote: > 3.2.57-rc1 review patch. If anyone has any objections, please let me know. [...] Raphael Geissert previously prepared a backport of this for Debian, which I overlooked while trying to handle it for 3.2-stable. When comparing the two, I fo

Re: [GIT PULL] please pull file locking changes for 3.15

2014-04-06 Thread Stephen Rothwell
Hi Jeff, On Fri, 4 Apr 2014 20:56:24 -0400 Jeff Layton wrote: > > Thanks for the feedback and for pulling this in anyway. I'll make sure > to do all of that on subsequent pull requests. Also, please don't rebase what you have in linux-next before sending it to Linus (without good reason). Espec

Re: [PATCH] staging: rtl8187se: Fix warning symbol should be static

2014-04-06 Thread Stefan Lippers-Hollmann
Hi On Sunday 06 April 2014, Josh Triplett wrote: > On Sun, Apr 06, 2014 at 05:46:04PM +0200, Jonas Hahnfeld wrote: > > This patch solves some sparse warnings about "symbol [...] was not > > declared. Should it be static?" by including the correct header files. > > > > Signed-off-by: Jonas Hahnfel

Re: [PATCH 1/2] fixup: "powerpc/perf: Add support for the hv 24x7 interface"

2014-04-06 Thread Anton Blanchard
Hi > That's not much less awful... The message gives 0 informations about > where it comes from .. what is it that couldn't obtain capabilities ? Cody is at least using pr_fmt to give some information on what went wrong: [1.635040] hv-24x7: not a virtualized system, not enabling [1.63507

Re: f2fs: kernel BUG at fs/f2fs/segment.h:543

2014-04-06 Thread Jaegeuk Kim
Hi, Thank you for the report. If possible, could you share fsck.f2fs or dump.f2fs on the corrupted partition? Otherwise, how about this? # fdisk /dev/sdx > p Thank you, 2014-04-05 (토), 11:12 -0400, Sasha Levin: > Hi all, > > While fuzzing with trinity inside a KVM tools guest running the late

Re: [PATCH 09/20] of/fdt: create common debugfs

2014-04-06 Thread Rob Herring
On Fri, Apr 4, 2014 at 9:11 AM, Michal Simek wrote: > On 04/04/2014 03:32 PM, Rob Herring wrote: >> On Fri, Apr 4, 2014 at 8:22 AM, Michal Simek wrote: >>> On 04/04/2014 03:00 PM, Rob Herring wrote: On Fri, Apr 4, 2014 at 7:16 AM, Michal Simek wrote: > On 04/04/2014 12:16 AM, Rob Herrin

Re: [PATCH 0/3] Staging: rtl8192e: Fix code issues

2014-04-06 Thread Greg Kroah-Hartman
On Sun, Apr 06, 2014 at 04:25:23PM -0500, Joel Pelaez Jorge wrote: > In the kernel driver: rtl8192e, exists some problems related > to source check, using the tool sparse, but for fix it, is necessary > remove a bad declaration that keep off the patch. > > Because it is resolved before apply the "

Re: [PATCH] Staging: rts5139: fix coding style

2014-04-06 Thread Greg KH
On Mon, Apr 07, 2014 at 12:45:05AM +0200, Fabio Falzoi wrote: > fix some coding style issues in rts51x.c (from rts5139 module) What specific coding style issues did you fix here? You need to be explicit, and if you do more than one type of change in the same patch, it needs to be broken up into d

linux-next: manual merge of the arm-soc tree with the tree

2014-04-06 Thread Stephen Rothwell
Hi all, Today's linux-next merge of the arm-soc tree got conflicts in arch/arm/boot/dts/qcom-msm8960.dtsi, arch/arm/boot/dts/qcom-msm8974.dtsi, arch/arm/mach-omap2/pdata-quirks.c, arch/arm/mach-zynq/Kconfig, drivers/watchdog/Kconfig and sound/soc/kirkwood/Kconfig between various merge commits from

Re: [PATCH] autofs4: check dev ioctl size before allocating

2014-04-06 Thread Sasha Levin
On 04/05/2014 11:53 PM, Ian Kent wrote: > On Sat, 2014-04-05 at 23:11 -0400, Sasha Levin wrote: >> On 04/05/2014 11:03 PM, Ian Kent wrote: >>> On Sat, 2014-04-05 at 11:06 -0400, Sasha Levin wrote: Ping? Anyone wants to take this? >>> >>> Is this causing a problem for users? >>> If it is I'll s

Re: Kconfig circular dependency question

2014-04-06 Thread Gene Heskett
On Sunday 06 April 2014, Paul Bolle wrote: >On Sun, 2014-04-06 at 13:31 -0700, Randy Dunlap wrote: >> and/or changing MOUSE_APPLETOUCH to depend on USB instead of select it? > >MOUSE_APPLETOUCH selects USB and depends on USB_ARCH_HAS_HCD. That's >actually quite a common pattern. > >But what is the

Re: [PATCH] fs/ext4/extents_status.c: fix 64-bit number truncation bug

2014-04-06 Thread Chen Gang
On 04/06/2014 09:39 PM, Geert Uytterhoeven wrote: > On Mon, Mar 31, 2014 at 3:16 PM, Chen Gang wrote: >> '0x7FDEADBEEF' will be truncated to 32-bit number under unicore32. Need >> append 'ULL' for it. >> >> The related warning (with allmodconfig under unicore32): >> >> CC [M] fs/ext4/extents

Re: [PATCH 1/2] fixup: "powerpc/perf: Add support for the hv 24x7 interface"

2014-04-06 Thread Benjamin Herrenschmidt
On Wed, 2014-04-02 at 15:10 -0700, Cody P Schafer wrote: > Make the "not enabled" message less awful. > > Signed-off-by: Cody P Schafer > --- > arch/powerpc/perf/hv-24x7.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/arch/powerpc/perf/hv-24x7.c b/arch/powerpc/perf/hv

[PATCH 3.2 13/18] net: asix: handle packets crossing URB boundaries

2014-04-06 Thread Ben Hutchings
3.2.57-rc1 review patch. If anyone has any objections, please let me know. -- From: Emil Goode commit 8b5b6f5413e97c3e8bafcdd67553d508f4f698cd upstream. ASIX AX88772B started to pack data even more tightly. Packets and the ASIX packet header may now cross URB boundaries. To h

[PATCH 3.2 08/18] net: ip, ipv6: handle gso skbs in forwarding path

2014-04-06 Thread Ben Hutchings
3.2.57-rc1 review patch. If anyone has any objections, please let me know. -- From: Florian Westphal commit fe6cc55f3a9a053482a76f5a6b2257cee51b4663 upstream. [ use zero netdev_feature mask to avoid backport of netif_skb_dev_features function ] Marcelo Ricardo Leitner repor

[PATCH 3.2 12/18] asix: asix_rx_fixup surgery to reduce skb truesizes

2014-04-06 Thread Ben Hutchings
3.2.57-rc1 review patch. If anyone has any objections, please let me know. -- From: Eric Dumazet commit a9e0aca4b37885b5599e52211f098bd7f565e749 upstream. asix_rx_fixup() is complex, and does some unnecessary memory copies (at least on x86 where NET_IP_ALIGN is 0) Also, it te

[PATCH 3.2 09/18] deb-pkg: use KCONFIG_CONFIG instead of .config file directly

2014-04-06 Thread Ben Hutchings
3.2.57-rc1 review patch. If anyone has any objections, please let me know. -- From: Anisse Astier commit d20917670ee1fd4b090555e551faea04b014ca97 upstream. Signed-off-by: Anisse Astier Reviewed-by: Ben Hutchings Signed-off-by: Michal Marek [bwh: Backported to 3.2: adjust co

[PATCH 3.2 17/18] cifs: ensure that uncached writes handle unmapped areas correctly

2014-04-06 Thread Ben Hutchings
3.2.57-rc1 review patch. If anyone has any objections, please let me know. -- From: Jeff Layton commit 5d81de8e8667da7135d3a32a964087c0faf5483f upstream. It's possible for userland to pass down an iovec via writev() that has a bogus user pointer in it. If that happens and we'r

[PATCH 3.2 16/18] KVM: VMX: fix use after free of vmx->loaded_vmcs

2014-04-06 Thread Ben Hutchings
3.2.57-rc1 review patch. If anyone has any objections, please let me know. -- From: Marcelo Tosatti commit 26a865f4aa8e66a6d94958de7656f7f1b03c6c56 upstream. After free_loaded_vmcs executes, the "loaded_vmcs" structure is kfreed, and now vmx->loaded_vmcs points to a kfreed are

[PATCH 3.2 11/18] deb-pkg: Fix cross-building linux-headers package

2014-04-06 Thread Ben Hutchings
3.2.57-rc1 review patch. If anyone has any objections, please let me know. -- From: Ben Hutchings commit f8ce239dfc7ba9add41d9ecdc5e7810738f839fa upstream. builddeb generates a control file that says the linux-headers package can only be built for the build system primary arch

[PATCH 3.2 01/18] Input: synaptics - add manual min/max quirk

2014-04-06 Thread Ben Hutchings
3.2.57-rc1 review patch. If anyone has any objections, please let me know. -- From: Benjamin Tissoires commit 421e08c41fda1f0c2ff6af81a67b491389b653a5 upstream. The new Lenovo Haswell series (-40's) contains a new Synaptics touchpad. However, these new Synaptics devices report

[PATCH 3.2 14/18] net: asix: add missing flag to struct driver_info

2014-04-06 Thread Ben Hutchings
3.2.57-rc1 review patch. If anyone has any objections, please let me know. -- From: Emil Goode commit d43ff4cd798911736fb39025ec8004284b1b0bc2 upstream. The struct driver_info ax88178_info is assigned the function asix_rx_fixup_common as it's rx_fixup callback. This means that

[PATCH 3.2 18/18] s390: fix kernel crash due to linkage stack instructions

2014-04-06 Thread Ben Hutchings
3.2.57-rc1 review patch. If anyone has any objections, please let me know. -- From: Martin Schwidefsky commit 8d7f6690cedb83456edd41c9bd583783f0703bf0 upstream. The kernel currently crashes with a low-address-protection exception if a user space process executes an instruction

[PATCH 3.2 03/18] staging: speakup: Prefix set_mask_bits() symbol

2014-04-06 Thread Ben Hutchings
3.2.57-rc1 review patch. If anyone has any objections, please let me know. -- From: Ben Hutchings This is part of commit ca2beaf84d96 ('staging: speakup: Prefix externally-visible symbols') upstream. It is required as preparation for commit 00a1a053ebe5 ('ext4: atomically set

[PATCH 3.2 02/18] Input: synaptics - add manual min/max quirk for ThinkPad X240

2014-04-06 Thread Ben Hutchings
3.2.57-rc1 review patch. If anyone has any objections, please let me know. -- From: Hans de Goede commit 8a0435d958fb36d93b8df610124a0e91e5675c82 upstream. This extends Benjamin Tissoires manual min/max quirk table with support for the ThinkPad X240. Signed-off-by: Hans de Go

[PATCH 3.2 10/18] deb-pkg: Fix building for MIPS big-endian or ARM OABI

2014-04-06 Thread Ben Hutchings
3.2.57-rc1 review patch. If anyone has any objections, please let me know. -- From: Ben Hutchings commit c5e318f67eebbad491615a752c51dbfde7dc3d78 upstream. These commands will mysteriously fail: $ make ARCH=arm versatile_defconfig [...] $ make ARCH=arm deb-pkg [...] make[1]:

[PATCH 3.2 05/18] netfilter: nf_conntrack_dccp: fix skb_header_pointer API usages

2014-04-06 Thread Ben Hutchings
3.2.57-rc1 review patch. If anyone has any objections, please let me know. -- From: Daniel Borkmann commit b22f5126a24b3b2f15448c3f2a254fc10cbc2b92 upstream. Some occurences in the netfilter tree use skb_header_pointer() in the following way ... struct dccp_hdr _dh, *dh;

[PATCH 3.2 04/18] ext4: atomically set inode->i_flags in ext4_set_inode_flags()

2014-04-06 Thread Ben Hutchings
3.2.57-rc1 review patch. If anyone has any objections, please let me know. -- From: Theodore Ts'o commit 00a1a053ebe5febcfc2ec498bd894f035ad2aa06 upstream. Use cmpxchg() to atomically set i_flags instead of clearing out the S_IMMUTABLE, S_APPEND, etc. flags and then setting th

[PATCH 3.2 06/18] ipc/msg: fix race around refcount

2014-04-06 Thread Ben Hutchings
3.2.57-rc1 review patch. If anyone has any objections, please let me know. -- From: Konstantin Khlebnikov In older kernels (before v3.10) ipc_rcu_hdr->refcount was non-atomic int. There was possuble double-free bug: do_msgsnd() calls ipc_rcu_putref() under msq->q_perm->lock and

[PATCH 3.2 15/18] KVM: MMU: handle invalid root_hpa at __direct_map

2014-04-06 Thread Ben Hutchings
3.2.57-rc1 review patch. If anyone has any objections, please let me know. -- From: Marcelo Tosatti commit 989c6b34f6a9480e397b170cc62237e89bf4fdb9 upstream. It is possible for __direct_map to be called on invalid root_hpa (-1), two examples: 1) try_async_pf -> can_do_async_p

[PATCH 3.2 00/18] 3.2.57-rc1 review

2014-04-06 Thread Ben Hutchings
This is the start of the stable review cycle for the 3.2.57 release. There are 18 patches in this series, which will be posted as responses to this one. If anyone has any issues with these being applied, please let me know. Responses should be made by Wed Apr 09 00:00:00 UTC 2014. Anything receiv

[PATCH 3.2 07/18] net: add and use skb_gso_transport_seglen()

2014-04-06 Thread Ben Hutchings
3.2.57-rc1 review patch. If anyone has any objections, please let me know. -- From: Florian Westphal commit de960aa9ab4decc3304959f69533eef64d05d8e8 upstream. [ no skb_gso_seglen helper in 3.4, leave tbf alone ] This moves part of Eric Dumazets skb_gso_seglen helper from tbf

Çinden urun almak veya Çine urun satmak istiyorsaniz,biz buradayiz.

2014-04-06 Thread Nihat AYDIN
Sn.Yetkili, Çinden urun almak veya Çine urun satmak istiyorsaniz,biz buradayiz. Çinde kurulu firmamizla ,ozellikle avrupali firmalara cin halk cumhuriyetinden yapmakta olduklari ithalat konusunda,danismanlik ve gozetim hizmeti vermekteyiz. -Cinden yapacaginiz ithalatlarda,urunlerinizde herhangi

[GIT PULL] MTD changes for 3.15

2014-04-06 Thread Brian Norris
Hi Linus, The following changes since commit fa389e220254c69ffae0d403eac4146171062d08: Linux 3.14-rc6 (2014-03-09 19:41:57 -0700) are available in the git repository at: git://git.infradead.org/linux-mtd.git tags/for-linus-20140405 for you to fetch changes up to 4a4163caccae97a23d97c290326

Re: 3.13.?: Strange / dangerous fan policy...

2014-04-06 Thread Manuel Krause
On 2014-04-06 04:43, Guenter Roeck wrote: On 04/05/2014 07:37 PM, Manuel Krause wrote: On 2014-04-01 01:47, Guenter Roeck wrote: On 03/31/2014 04:37 PM, Manuel Krause wrote: On 2014-03-20 21:21, Manuel Krause wrote: On 2014-03-11 22:59, Manuel Krause wrote: On 2014-03-10 02:49, Manuel Krause

[PATCH] Staging: rts5139: fix coding style

2014-04-06 Thread Fabio Falzoi
fix some coding style issues in rts51x.c (from rts5139 module) This is for task 10 of the Eudyptula challenge Signed-off-by: Fabio Falzoi --- drivers/staging/rts5139/rts51x.c | 62 1 file changed, 31 insertions(+), 31 deletions(-) diff --git a/drivers/st

Re: NFS V4 calls for a NFS v3 mount

2014-04-06 Thread NeilBrown
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On Sun, 06 Apr 2014 20:01:24 +0200 Toralf Förster wrote: > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA256 > > On 04/06/2014 07:57 PM, Roger Heflin wrote: > > No where in the mount command did you tell it that this was a > > nfsversion 3 only mou

Re: [PATCH] arm64: fix !CONFIG_COMPAT build failures

2014-04-06 Thread Catalin Marinas
On Sat, Apr 05, 2014 at 03:25:49PM +0100, Mark Salter wrote: > Recent arm64 builds using CONFIG_ARM64_64K_PAGES are failing with: > > arch/arm64/kernel/perf_regs.c: In function ‘perf_reg_abi’: > arch/arm64/kernel/perf_regs.c:41:2: error: implicit declaration of function > ‘is_compat_thread’ >

[PATCH] staging/line6: Fix kzalloc coding style issue

2014-04-06 Thread L . Alberto Giménez
Pass the actual variable to sizeof instead of a type definition. Signed-off-by: L. Alberto Giménez --- drivers/staging/line6/pcm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/staging/line6/pcm.c b/drivers/staging/line6/pcm.c index 661080b..a3136b1 100644 --- a/dri

[PATCH] decnet: fix possible NULL deref in dnet_select_source()

2014-04-06 Thread Eric Dumazet
From: Eric Dumazet dnet_select_source() should make sure dn_ptr is not NULL. While looking at this decnet code, I believe I found a device reference leak, lets fix it as well. Reported-by: Sasha Levin Signed-off-by: Eric Dumazet --- It seems this bug is very old, no recent change is involved

[ANNOUNCE] kmod 17

2014-04-06 Thread Lucas De Marchi
kmod 17 is out: ftp://ftp.kernel.org/pub/linux/utils/kernel/kmod/kmod-17.tar.xz ftp://ftp.kernel.org/pub/linux/utils/kernel/kmod/kmod-17.tar.sign Several fixes on this release, some new features and initial python bindings. The python bindings are still experimental and subject to

Re: [PATCH 2/2] Staging: rtl8192e: Fix sparse warning

2014-04-06 Thread Joe Perches
On Sun, 2014-04-06 at 16:30 -0500, Joel Pelaez Jorge wrote: > Include the header 'rtl_wx.h' to 'rtl_wx.c' > > 'rtl_wx.h' has the declarations used for some source files of > the driver. It has: > > extern struct iw_handler_def r8192_wx_handlers_def; Likely this extern should be extern const stru

Re: [PATCH] input: pcap2: avoid calling mutex_lock() in irq handler

2014-04-06 Thread Antonio Ospite
On Sun, 6 Apr 2014 13:24:36 -0700 Dmitry Torokhov wrote: > On Sun, Apr 06, 2014 at 12:54:50AM +0400, Alexey Khoroshilov wrote: > > pcap_keys_handler() calls ezx_pcap_read() that calls mutex_lock(). > > pcap_keys_handler() is registered as nonthreaded irq handler, > > that means sleeping function

[PATCH 2/2] Staging: rtl8192e: Fix sparse warning

2014-04-06 Thread Joel Pelaez Jorge
Include the header 'rtl_wx.h' to 'rtl_wx.c' 'rtl_wx.h' has the declarations used for some source files of the driver. It has: extern struct iw_handler_def r8192_wx_handlers_def; That fix the problem: drivers/staging/rtl8192e/rtl8192e/rtl_wx.c:1323:24: warning: symbol 'r8192_wx_handlers_def' was

[PATCH 1/2] Staging: rtl8192e: Remove bad 'extern' declaration

2014-04-06 Thread Joel Pelaez Jorge
Remove extern declaration to a static function: iw_statistics *r8192_get_wireless_stats(struct net_device *dev); Signed-off-by: Joel Pelaez Jorge --- drivers/staging/rtl8192e/rtl8192e/rtl_wx.h | 1 - 1 file changed, 1 deletion(-) diff --git a/drivers/staging/rtl8192e/rtl8192e/rtl_wx.h b/drivers

[PATCH 0/3] Staging: rtl8192e: Fix code issues

2014-04-06 Thread Joel Pelaez Jorge
In the kernel driver: rtl8192e, exists some problems related to source check, using the tool sparse, but for fix it, is necessary remove a bad declaration that keep off the patch. Because it is resolved before apply the "main" patch. Joel Pelaez Jorge (2): Staging: rtl8192e: Remove bad 'extern'

Re: Kconfig circular dependency question

2014-04-06 Thread Paul Bolle
On Sun, 2014-04-06 at 16:07 -0500, Larry Finger wrote: > As you have seen in my reply to Randy, this appears to arise from violating > one > of the edicts of Linus that says that no configuration variable should select > a > subsystem. Of course, one could argue that RFKILL is also a subsystem,

Re: Kconfig circular dependency question

2014-04-06 Thread Larry Finger
On 04/06/2014 03:52 PM, Paul Bolle wrote: On Sun, 2014-04-06 at 13:31 -0700, Randy Dunlap wrote: and/or changing MOUSE_APPLETOUCH to depend on USB instead of select it? MOUSE_APPLETOUCH selects USB and depends on USB_ARCH_HAS_HCD. That's actually quite a common pattern. But what is the purpos

Re: Kconfig circular dependency question

2014-04-06 Thread Larry Finger
On 04/06/2014 03:31 PM, Randy Dunlap wrote: On 04/06/2014 12:49 PM, Larry Finger wrote: A kernel build is reporting the following: net/rfkill/Kconfig:4:error: recursive dependency detected! net/rfkill/Kconfig:4: symbol RFKILL is selected by R8723AU drivers/staging/rtl8723au/Kconfig:1:symb

  1   2   3   >