Re: [PATCH] commit: Add -f, --fixes option to add Fixes: line

2013-10-26 Thread Michael Haggerty
On 10/27/2013 02:34 AM, Josh Triplett wrote: > Linux Kernel Summit 2013 decided on a commit message convention to > identify commits containing bugs fixed by a commit: a "Fixes:" line, > included in the standard commit footer (along with "Signed-off-by:" if > present), containing an abbreviated

Re: query for idea about a kexec regression

2013-10-26 Thread Dave Young
typo: mail address of x...@kernel.org On 10/27/13 at 12:30pm, Dave Young wrote: > Hi > > While I testing efi runtime patches for kexec kernel, there's > 2 machines kexec fails on them. It can be reproduced with > non-efi kernel, so it's not related to the patchset. > > Problem is kexec kernel

query for idea about a kexec regression

2013-10-26 Thread Dave Young
Hi While I testing efi runtime patches for kexec kernel, there's 2 machines kexec fails on them. It can be reproduced with non-efi kernel, so it's not related to the patchset. Problem is kexec kernel will immediatly reboot after below kernel message: smpboot: Booting Node 0, Processors # 1

[patch 3/6] Cleanup efi_enter_virtual_mode function

2013-10-26 Thread dyoung
Add two small functions: efi_merge_regions and efi_map_regions, efi_enter_virtual_mode calls them instead of embedding two long for loop. Signed-off-by: Dave Young --- arch/x86/platform/efi/efi.c | 83 +++- 1 file changed, 52 insertions(+), 31

[patch 5/6] export efi runtime memory mapping to sysfs

2013-10-26 Thread dyoung
kexec kernel will need exactly same mapping for efi runtime memory ranges. Thus here export the runtime ranges mapping to sysfs, kexec-tools will assemble them and pass to 2nd kernel via setup_data. Introducing a new directly /sys/firmware/efi/efi-runtime-map Just like /sys/firmware/memmap.

[patch 1/6] Add function efi_remap_region for remapping to saved virt address

2013-10-26 Thread dyoung
Kexec kernel will use saved runtime virtual mapping, so add a new function efi_remap_region to remapping it directly without calculate the virt addr from efi_va. The md is passed in from 1st kernel, the virtual addr is saved in md->virt_addr. Signed-off-by: Dave Young ---

[patch 4/6] export more efi table variable to sysfs

2013-10-26 Thread dyoung
Export fw_vendor, runtime and config tables physical addresses to /sys/firmware/efi/systab becaue kexec kernel will need them. >From EFI spec these 3 variables will be updated to virtual address after entering virtual mode. But kernel startup code will need the physical address. Signed-off-by:

[patch 6/6] passing kexec necessary efi data via setup_data

2013-10-26 Thread dyoung
Add a new setup_data type SETUP_EFI for kexec use. Passing the saved fw_vendor, runtime, config tables and efi runtime mappings. When entering virtual mode, directly mapping the efi runtime ragions which we passed in previously. And skip the step to call SetVirtualAddressMap. Specially for HP

[patch 0/6] kexec kernel efi runtime support

2013-10-26 Thread dyoung
Hi, Here is the 1st version for supporting kexec kernel efi runtime. Per pervious discussion I pass the 1st kernel efi runtime mapping via setup_data to 2nd kernel. Besides of the runtime mapping info I also pass the fw_vendor, runtime, config table, smbios physical address in setup_data. EFI

[PATCH V2] usbatm: Fix dynamic_debug / ratelimited atm_dbg and atm_rldbg macros

2013-10-26 Thread Joe Perches
Fix atm_dbg to use normal pr_debug not dynamic_pr_debug because dynamic_pr_debug may not be compiled in at all. Signed-off-by: Joe Perches --- V2: Fix macro use of arg... vs ... typo Fix usbatm vs atmusb typo (thanks Krzysiek) drivers/usb/atm/usbatm.h | 14 +++--- 1 file changed, 7

[PATCH V2] printk: pr_debug_ratelimited: check state first to reduce "callbacks suppressed" messages

2013-10-26 Thread Joe Perches
pr_debug_ratelimited should be coded similarly to dev_dbg_ratelimited to reduce the "callbacks suppressed" messages. Add #include to printk.h. Unfortunately, this new #include must be after the prototype/declaration of function printk. It may be better to split out these _ratelimited

[PATCH] fs/9p: fix flags in the format of printf

2013-10-26 Thread Cong Ding
To print "int" value, we should use %d rather than %u. Signed-off-by: Cong Ding --- fs/9p/vfs_inode.c |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fs/9p/vfs_inode.c b/fs/9p/vfs_inode.c index af7d531..dcc099a 100644 --- a/fs/9p/vfs_inode.c +++ b/fs/9p/vfs_inode.c @@

Re: [PATCH] usb-storage: scsiglue: Changing the command result

2013-10-26 Thread Greg KH
On Sat, 26 Oct 2013, Vishal Annapurve wrote: > Hi Alan, > > Here is the new patch: > > From: Vishal Annapurve > Date: Sat, 26 Oct 2013 21:10:11 +0530 > Subject: [PATCH] usb: storage: Proper cmd result assignment > > This change replaces DID_ABORT with DID_TIMEOUT as a command result > whenever

Re: [PATCH] DYNAMIC_DEBUG: use select DEBUG_FS instead of depends on

2013-10-26 Thread Greg Kroah-Hartman
On Sat, Oct 26, 2013 at 10:58:13PM +0200, Krzysztof Mazur wrote: > Depending on options that are configured later makes them hard > to enable unless the user knows that he must go backwards. Really? We've had this for well over 2 years, people are confused about this? Where? -- To unsubscribe

f2fs: deadlock in mkdir if ACL is enabled

2013-10-26 Thread Alexey Khoroshilov
Dear Jaegeuk, Testing F2FS in the following configuration: CONFIG_F2FS_FS=m CONFIG_F2FS_STAT_FS=y CONFIG_F2FS_FS_XATTR=y CONFIG_F2FS_FS_POSIX_ACL=y CONFIG_F2FS_FS_SECURITY=y I have got a deadlock: [16921.437845] INFO: task fs-driver-tests:12695 blocked for more than 120 seconds.

Re: [PATCH 4/4] staging/lustre: fix coccinelle warnings

2013-10-26 Thread Greg Kroah-Hartman
On Mon, Oct 21, 2013 at 11:18:25PM +0800, Peng Tao wrote: > From: Fengguang Wu > > drivers/staging/lustre/lustre/ptlrpc/sec_bulk.c:217:2-3: Unneeded semicolon > > Removes unneeded semicolon. > > Generated by: coccinelle/misc/semicolon.cocci > > CC: Peng Tao > CC: Andreas Dilger >

Re: [PATCH v7] arm: use built-in byte swap function

2013-10-26 Thread Nicolas Pitre
On Thu, 23 May 2013, Kim Phillips wrote: > Enable the compiler intrinsic for byte swapping on arch ARM. This > allows the compiler to detect and be able to optimize out byte > swappings, and has a very modest benefit on vmlinux size (Linaro gcc > 4.8): > >text data bss dec

Re: [PATCH 1/3] vxlan: silence one build warning

2013-10-26 Thread Zhi Yong Wu
HI, Stephen I saw it on Fedora 17 without latest kernel. Then what do you think that it is appropriate to solve this problem? discard this patch? If yes, i can also agree. On Sat, Oct 26, 2013 at 10:48 PM, Stephen Hemminger wrote: > On Sat, 26 Oct 2013 15:06:04 +0800 > Zhi Yong Wu wrote: > >>

Re: [PATCH] Add SDIO and MMC device ID support for CLV

2013-10-26 Thread Chris Ball
Hi Eric, On Mon, Oct 21 2013, Eric Ernst wrote: > This patch adds intel_mid clovertrail SDIO and eMMC device > IDs to the sdhci-pci driver. > > Signed-off-by: Eric Ernst > Signed-off-by: David Cohen Thanks, pushed to mmc-next for 3.13. - Chris. -- Chris Ball -- To

[PATCH] commit: Add -f, --fixes option to add Fixes: line

2013-10-26 Thread Josh Triplett
Linux Kernel Summit 2013 decided on a commit message convention to identify commits containing bugs fixed by a commit: a "Fixes:" line, included in the standard commit footer (along with "Signed-off-by:" if present), containing an abbreviated commit hash (at least 12 characters to keep it valid

Es ist Privat

2013-10-26 Thread George Daniels
Es ist Privat Ich bin George Daniels, ein Banker und Credit-System-Programmierer (HSBC Bank). Ich sah Ihre E-Mail-Adresse während des Surfens durch die Bank DTC Bildschirm in mein Büro gestern so beschloss ich, diese Chance zu nutzen sehr, Sie kennenzulernen. I glaube, wir sollten jede

Re: [3.11.4] Thunderbolt/PCI unplug oops in pci_pme_list_scan

2013-10-26 Thread Andreas Noever
> Sorry, I didn't understand this. Is this supposed to be an > explanation of how 928bea fixes the oops that Andreas saw? If so, can > you be a little more explicit about when the pci_dev got freed and > when pci_pme_list_scan() walked the list and accessed the freed area? I did some more

[PATCH] 3.13 series, sg: O_EXCL and other lock handling

2013-10-26 Thread Douglas Gilbert
s for each component */ #ifdef CONFIG_SCSI_PROC_FS #include -static char *sg_version_date = "20061027"; +static char *sg_version_date = "20131026"; static int sg_proc_init(void); static void sg_proc_cleanup(void); @@ -105,11 +103,8 @@ static int scatter_elem_sz_prev =

Re: [GIT PULLv2] For x86/mce ... enhanced error logs

2013-10-26 Thread Christoph Hellwig
On Sat, Oct 26, 2013 at 02:34:52PM -0700, Tony Luck wrote: > As Chen Gong points out, drivers/acpi isn't the right place ... so if not > lib/ ... then where? A to be created drivers/efi? There should be a lot more shared EFI code coming sooner or later, shouldn't it? -- To unsubscribe from

Re: [GIT PULLv2] For x86/mce ... enhanced error logs

2013-10-26 Thread Tony Luck
> Hm, I'm not sure we should move something named after a hardware > feature into lib/. It's not really generic C library functionality, > Not a hardware feature. CPER stands for Common Platform Error Record from the UEFI standard. So applicable to three? architectures. As Chen Gong points

Attention Please...

2013-10-26 Thread Mr. TANKO MUBBASHAR
Hello Dear.   I am the General Audit Manager, Accounts Department in our bank. I have the opportunity of transferring the sum of ($10.5m) Ten million five hundred thousand united states dollars only).This fund originally belongs to one of our bank Customers who died many years back.   I need

[PATCH] Documentation: add missing files to timers/00-INDEX

2013-10-26 Thread Henrik Austad
From: Henrik Austad - timers-howto was added by commit 0fcb8081 (Documentation: Add timers/timers-howto.txt) - NO_HZ was added by commit 0c87f9b5 (nohz_full: Add documentation.) Cc: Patrick Pannuto Cc: Paul E. McKenney Cc: Jiri Kosina Signed-off-by: Henrik Austad ---

[PATCH] CRYPTO: omap-sham: Add missing modalias

2013-10-26 Thread Pali Rohár
From: Joni Lapilainen Signed-off-by: Joni Lapilainen --- drivers/crypto/omap-sham.c |1 + 1 file changed, 1 insertion(+) diff --git a/drivers/crypto/omap-sham.c b/drivers/crypto/omap-sham.c index 8bdde57..236db0a 100644 --- a/drivers/crypto/omap-sham.c +++ b/drivers/crypto/omap-sham.c @@

[PATCH] DYNAMIC_DEBUG: use select DEBUG_FS instead of depends on

2013-10-26 Thread Krzysztof Mazur
Depending on options that are configured later makes them hard to enable unless the user knows that he must go backwards. Signed-off-by: Krzysztof Mazur --- lib/Kconfig.debug | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Kconfig.debug b/lib/Kconfig.debug index

[PATCH 01/16] mac80211: fix TX device statistics for monitor interfaces

2013-10-26 Thread Pali Rohár
From: David Gnedt Count TX packets and bytes also for monitor interfaces. Signed-of-by: David Gnedt --- net/mac80211/tx.c |3 +++ 1 file changed, 3 insertions(+) diff --git a/net/mac80211/tx.c b/net/mac80211/tx.c index 3456c04..674db8e 100644 --- a/net/mac80211/tx.c +++

[PATCH 03/16] wl1251: add sysfs interface for bluetooth coexistence mode configuration

2013-10-26 Thread Pali Rohár
From: David Gnedt Port the bt_coex_mode sysfs interface from wl1251 driver version included in the Maemo Fremantle kernel to allow bt-coexistence mode configuration. This enables userspace applications to set one of the modes WL1251_BT_COEX_OFF, WL1251_BT_COEX_ENABLE and

Re: [PATCH] media: Add BCM2048 radio driver

2013-10-26 Thread Pali Rohár
On Saturday 26 October 2013 22:22:09 Hans Verkuil wrote: > > Hans, so can it be added to drivers/staging/media tree? > > Yes, that is an option. It's up to you to decide what you > want. Note that if no cleanup work is done on the staging > driver for a long time, then it can be removed again. >

[PATCH 04/16] wl1251: retry power save entry

2013-10-26 Thread Pali Rohár
From: David Gnedt Port of the power save entry retry code from wl1251 driver version included in the Maemo Fremantle kernel. This tries to enable power save mode up to 3 times before failing. Signed-off-by: David Gnedt --- drivers/net/wireless/ti/wl1251/boot.c |3 ++-

[PATCH 02/16] wl1251: fix scan behaviour while not associated

2013-10-26 Thread Pali Rohár
From: David Gnedt With a dissacociated card I often encoutered very long scan delays. My guess is that it has something to do with the cards DTIM handling and another firmware bug mentioned in the TI WLAN driver, which is described as the card may never end scanning if the channel is overloaded

[PATCH 05/16] wl1251: implement hardware ARP filtering

2013-10-26 Thread Pali Rohár
From: David Gnedt Update hardware ARP filter configuration on BSS_CHANGED_ARP_FILTER notification from mac80211. Ported from wl1271 driver. Signed-off-by: David Gnedt --- drivers/net/wireless/ti/wl1251/acx.c | 31 +++ drivers/net/wireless/ti/wl1251/acx.h | 15

[PATCH 09/16] wl1251: disable power saving in monitor mode

2013-10-26 Thread Pali Rohár
From: David Gnedt Force power saving off while monitor interface is present. Signed-off-by: David Gnedt --- drivers/net/wireless/ti/wl1251/main.c |7 --- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/drivers/net/wireless/ti/wl1251/main.c

[PATCH 12/16] wl1251: disable retry and ACK policy for injected packets

2013-10-26 Thread Pali Rohár
From: David Gnedt Set the retry limit to 0 and disable the ACK policy for injected packets. Signed-off-by: David Gnedt --- drivers/net/wireless/ti/wl1251/acx.c |8 +++- drivers/net/wireless/ti/wl1251/tx.c |7 ++- 2 files changed, 13 insertions(+), 2 deletions(-) diff --git

[PATCH 08/16] wl1251: implement multicast address filtering

2013-10-26 Thread Pali Rohár
From: David Gnedt Port multicast address filtering from wl1271 driver. It sets up the hardware multicast address filter in configure_filter() with addresses supplied through prepare_multicast(). Signed-off-by: David Gnedt --- drivers/net/wireless/ti/wl1251/acx.c|9 ++---

[PATCH 07/16] wl1251: configure hardware en-/decryption for monitor mode

2013-10-26 Thread Pali Rohár
From: David Gnedt Disable hardware encryption (DF_ENCRYPTION_DISABLE) and decryption (DF_SNIFF_MODE_ENABLE) via wl1251_acx_feature_cfg while monitor interface is present. Signed-off-by: David Gnedt --- drivers/net/wireless/ti/wl1251/acx.c|6 +++--- drivers/net/wireless/ti/wl1251/acx.h

[PATCH 11/16] wl1251: enable tx path in monitor mode if necessary for packet injection

2013-10-26 Thread Pali Rohár
From: David Gnedt If necessary enable the tx path in monitor mode for packet injection using the JOIN command with BSS_TYPE_STA_BSS and zero BSSID. Signed-off-by: David Gnedt --- drivers/net/wireless/ti/wl1251/main.c |5 + drivers/net/wireless/ti/wl1251/tx.c | 17

[PATCH 10/16] wl1251: fix channel switching in monitor mode

2013-10-26 Thread Pali Rohár
From: David Gnedt Use the ENABLE_RX command for channel switching when no interface is present (monitor mode only). The advantage of ENABLE_RX is that it leaves the tx data path disabled in firmware, whereas the usual JOIN command seems to transmit some frames at firmware level. Signed-off-by:

[PATCH 13/16] wl1251: enforce changed hw encryption support on monitor state change

2013-10-26 Thread Pali Rohár
From: David Gnedt The firmware doesn't support per packet encryption selection, so disable hw encryption support completly while a monitor interface is present to support injection of packets (which shouldn't get encrypted by hw). To enforce the changed hw encryption support force a

[PATCH 14/16] wl1251: add nvs file name to module firmware list

2013-10-26 Thread Pali Rohár
Signed-off-by: Pali Rohár --- drivers/net/wireless/ti/wl1251/main.c |1 + 1 file changed, 1 insertion(+) diff --git a/drivers/net/wireless/ti/wl1251/main.c b/drivers/net/wireless/ti/wl1251/main.c index f054741..7b9efc8 100644 --- a/drivers/net/wireless/ti/wl1251/main.c +++

[PATCH 16/16] wl1251: Add sysfs file address for setting permanent mac address

2013-10-26 Thread Pali Rohár
Driver wl1251 generating mac address randomly at startup and there is no way to set permanent mac address via SET_IEEE80211_PERM_ADDR. This patch export sysfs file which can set permanent mac address by userspace helper program. Patch is needed for devices which do not store mac address in

[PATCH 06/16] wl1251: split RX and TX data path initialisation

2013-10-26 Thread Pali Rohár
From: David Gnedt Split up data path initialisation into RX and TX data path initialisation functions. This change is required for channel switching in monitor mode. Signed-off-by: David Gnedt --- drivers/net/wireless/ti/wl1251/cmd.c | 37 ++---

[PATCH 15/16] wl1251: Add sysfs file tx_mgmt_frm_rate for setting rate

2013-10-26 Thread Pali Rohár
This patch was extracted from Maemo 2.6.28 kernel Signed-off-by: Pali Rohár --- drivers/net/wireless/ti/wl1251/main.c | 152 + 1 file changed, 152 insertions(+) diff --git a/drivers/net/wireless/ti/wl1251/main.c b/drivers/net/wireless/ti/wl1251/main.c index

[PATCH 00/16] wl1251 patches from linux-n900 tree

2013-10-26 Thread Pali Rohár
Hello, I'm sending wl1251 patches from linux-n900 tree [1] for comments. More patches come from David's monitor & packet injection work. Patches are tested with 3.12 rc5 kernel on Nokia N900. [1] - https://gitorious.org/linux-n900/linux-n900 David Gnedt (13): mac80211: fix TX device statistics

Re: [PATCH] media: Add BCM2048 radio driver

2013-10-26 Thread Hans Verkuil
> Hans, so can it be added to drivers/staging/media tree? Yes, that is an option. It's up to you to decide what you want. Note that if no cleanup work is done on the staging driver for a long time, then it can be removed again. Regards, Hans > > On Thursday 17 October 2013 21:31:04 Pali

Re: [PATCH] media: Add BCM2048 radio driver

2013-10-26 Thread Pali Rohár
Hans, so can it be added to drivers/staging/media tree? On Thursday 17 October 2013 21:31:04 Pali Rohár wrote: > Hello, > > so what do you suggest? Add it to staging for now (or not)? > > On Tuesday 15 October 2013 17:08:39 Hans Verkuil wrote: > > Hi Pali, > > > > Thanks for the patch, but I

Re: Disabling in-memory write cache for x86-64 in Linux II

2013-10-26 Thread Linus Torvalds
On Sat, Oct 26, 2013 at 4:32 AM, Pavel Machek wrote: > > Hmm, I'd expect the result to be "dead USB key". Putting > ext3 on cheap flash device normally just kills the devic :-(. Not my experience. It may be true for some really cheap devices, but normal USB keys seem to just get really slow,

Re: [PATCH] atmusb: Fix dynamic_debug macros

2013-10-26 Thread Krzysztof Mazur
On Sat, Oct 26, 2013 at 12:28:56PM -0700, Joe Perches wrote: > On Sat, 2013-10-26 at 11:55 -0700, Joe Perches wrote: > > Fix use of atm_dbg to all normal pr_debug not dynamic_pr_debug > > because dynamic_pr_debug may not be compiled in at all. > > Greg, please don't apply this one. > I'll

Re: [PATCH] x86/ACPI: Make Sony Vaio Z1 series to use "reboot=pci" default

2013-10-26 Thread Linus Torvalds
On Sat, Oct 26, 2013 at 10:08 AM, Adam Williamson wrote: > > Thanks, I'll give it a shot. Note - I suspect some of the other cases > may really be delays rather than hangs too. It's very easy to look at > the screen sitting there doing absolutely nothing at all for 30-60 > seconds, lose patience,

Re: [PATCH] printk: pr_debug_ratelimited: check state first to reduce "callbacks suppressed" messages

2013-10-26 Thread Joe Perches
On Sat, 2013-10-26 at 20:01 +0100, Greg Kroah-Hartman wrote: > On Sat, Oct 26, 2013 at 11:52:02AM -0700, Joe Perches wrote: > > pr_debug_ratelimited should be coded similar to dev_dbg_ratelimited > > to reduce the "callbacks suppressed" messages. > > Signed-off-by: Joe Perches > Looks good, I'll

RE: [PATCH] usb-storage: scsiglue: Changing the command result

2013-10-26 Thread Alan Stern
On Sat, 26 Oct 2013, Vishal Annapurve wrote: > Hi Alan, > > Here is the new patch: > > From: Vishal Annapurve > Date: Sat, 26 Oct 2013 21:10:11 +0530 > Subject: [PATCH] usb: storage: Proper cmd result assignment > > This change replaces DID_ABORT with DID_TIMEOUT as a command result >

Re: [PATCH] atmusb: Fix dynamic_debug macros

2013-10-26 Thread Joe Perches
On Sat, 2013-10-26 at 11:55 -0700, Joe Perches wrote: > Fix use of atm_dbg to all normal pr_debug not dynamic_pr_debug > because dynamic_pr_debug may not be compiled in at all. Greg, please don't apply this one. I'll resubmit one that actually works. (the arg...) should be ... > +#define

Re: [PATCH] Bluetooth: Add hci_h4p driver

2013-10-26 Thread Pali Rohár
On Thursday 24 October 2013 20:41:53 Joe Perches wrote: > On Fri, 2013-10-18 at 12:30 +0200, Pali Rohár wrote: > > I rebased patch on top of > > https://git.kernel.org/cgit/linux/kernel/git/bluetooth/blue > > tooth-next.git branch master > > Hi Pali, just some trivial notes: > > [] > > +static

Dear Friend.

2013-10-26 Thread mrs maria
Dear Friend. I am Mrs Maria ,The Head of file Department in Bank Of Africa.I seek your a ssistance and i assured of your capability to champion this business opport unity to remit $15 million U.S.A dollars. Into your account if you are inte rested let me know so that i can send you the details

Re: [PATCH] printk: pr_debug_ratelimited: check state first to reduce "callbacks suppressed" messages

2013-10-26 Thread Greg Kroah-Hartman
On Sat, Oct 26, 2013 at 11:52:02AM -0700, Joe Perches wrote: > pr_debug_ratelimited should be coded similar to dev_dbg_ratelimited > to reduce the "callbacks suppressed" messages. > > Signed-off-by: Joe Perches Looks good, I'll queue both of these up soon. greg k-h -- To unsubscribe from this

[PATCH] atmusb: Fix dynamic_debug macros

2013-10-26 Thread Joe Perches
Fix use of atm_dbg to all normal pr_debug not dynamic_pr_debug because dynamic_pr_debug may not be compiled in at all. Signed-off-by: Joe Perches --- drivers/usb/atm/usbatm.h | 13 ++--- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/drivers/usb/atm/usbatm.h

[PATCH] perf tools: Add missing data.h into LIB_H headers

2013-10-26 Thread Jiri Olsa
On Wed, Oct 23, 2013 at 09:34:36AM +0300, Adrian Hunter wrote: > On 15/10/13 17:27, Jiri Olsa wrote: > > Adding perf_data_file__open interface to data object > > to open the perf.data file for both read and write. > > > > Signed-off-by: Jiri Olsa > > Cc: Corey Ashford > > Cc: Frederic

[PATCH] printk: pr_debug_ratelimited: check state first to reduce "callbacks suppressed" messages

2013-10-26 Thread Joe Perches
pr_debug_ratelimited should be coded similar to dev_dbg_ratelimited to reduce the "callbacks suppressed" messages. Signed-off-by: Joe Perches --- On Sat, 2013-10-26 at 18:37 +0100, Greg Kroah-Hartman wrote: > On Sat, Oct 26, 2013 at 03:29:56PM +0200, Krzysztof Mazur wrote: > > Hi, > > > >

Re: [PATCH 2/3] fs: nfsd: remove calls to simple_strtoll

2013-10-26 Thread J. Bruce Fields
On Fri, Oct 25, 2013 at 07:33:12PM -0700, Daniel Walker wrote: > Signed-off-by: Daniel Walker > --- > fs/nfsd/fault_inject.c | 12 > 1 file changed, 8 insertions(+), 4 deletions(-) > > diff --git a/fs/nfsd/fault_inject.c b/fs/nfsd/fault_inject.c > index d620e7f..41165f0 100644 >

[GIT PULL] target fixes for v3.12-rc7

2013-10-26 Thread Nicholas A. Bellinger
Hello Linus! Here are the outstanding target pending fixes for v3.12-rc7. Please go ahead and pull from: git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master It includes a number of EXTENDED_COPY related fixes as a result of Thomas and Doug's continuing testing and

[PATCH v2] mmc: fix host release issue after discard operation

2013-10-26 Thread Ray Jui
Under function mmc_blk_issue_rq, after an MMC discard operation, the MMC request data structure may be freed in memory. Later in the same function, the check of req->cmd_flags & MMC_REQ_SPECIAL_MASK is dangerous and invalid. It causes the MMC host not to be released when it should This patch

Re: [PATCH v3 4/4] perf,x86: add RAPL hrtimer support

2013-10-26 Thread Jiri Olsa
On Sat, Oct 26, 2013 at 07:07:06PM +0200, Stephane Eranian wrote: > On Fri, Oct 25, 2013 at 7:44 PM, Jiri Olsa wrote: > > On Wed, Oct 23, 2013 at 02:58:05PM +0200, Stephane Eranian wrote: SNIP > >> + list_for_each_entry(event, >active_list, active_entry) { > >> +

Re: [PATCH v3 1/4] perf: add active_entry list head to struct perf_event

2013-10-26 Thread Jiri Olsa
On Sat, Oct 26, 2013 at 06:57:37PM +0200, Stephane Eranian wrote: > On Fri, Oct 25, 2013 at 4:56 PM, Jiri Olsa wrote: > > > > On Wed, Oct 23, 2013 at 02:58:02PM +0200, Stephane Eranian wrote: > > > This patch adds a new fields to the struct perf_event. > > > It is intended to be used to chain

Re: usbatm: printk_ratelimit() always called in the atm_rldbg()

2013-10-26 Thread Greg Kroah-Hartman
On Sat, Oct 26, 2013 at 03:29:56PM +0200, Krzysztof Mazur wrote: > Hi, > > commit 2d6401cf4ca3861692a4779745e0049cac769d10 > ("USB: usbatm: move the atm_dbg() call to use dynamic debug") > changed the atm_rldbg() to: > > #define atm_rldbg(instance, format, arg...) \ > if

Re: [PATCH 2/2] extcon: arizona: Fix reset of HPDET after race with removal

2013-10-26 Thread Charles Keepax
On Sat, Oct 26, 2013 at 09:29:07AM -0700, Lee Jones wrote: > What happens if we don't update the bits and we still do magic in the > new error path? Does that adversely affect any later 'goto done's? I think best leave this patch for now I should probably rethink it slightly, as you say I am not

Re: ARM/kirkwood: v3.12-rc6: kernel BUG at mm/util.c:390!

2013-10-26 Thread Aaro Koskinen
Hi, On Sat, Oct 26, 2013 at 03:36:17PM +0100, Will Deacon wrote: > On Thu, Oct 24, 2013 at 09:07:30PM +0100, Aaro Koskinen wrote: > > [ 26.694345] ata2: link is slow to respond, please be patient (ready=0) > > [ 31.194346] ata2: SRST failed (errno=-16) > > [ 31.754426] ata2: SATA link up

Re: [PATCH] x86/ACPI: Make Sony Vaio Z1 series to use "reboot=pci" default

2013-10-26 Thread Adam Williamson
On Sat, 2013-10-26 at 11:15 +0200, Ingo Molnar wrote: > So, the best range for the breakage we have is v3.3..v3.5. So far, yeah. I will try and narrow it down. > As a blind shot into the dark, that turns out to be a range when a > number of irq-remapping, vt-d changes went upstream: > >

Re: [PATCH v3 4/4] perf,x86: add RAPL hrtimer support

2013-10-26 Thread Stephane Eranian
On Fri, Oct 25, 2013 at 7:44 PM, Jiri Olsa wrote: > On Wed, Oct 23, 2013 at 02:58:05PM +0200, Stephane Eranian wrote: >> The RAPL PMU counters do not interrupt on overflow. >> Therefore, the kernel needs to poll the counters >> to avoid missing an overflow. This patch adds >> the hrtimer code to

Re: [PATCH v3 3/4] perf,x86: add Intel RAPL PMU support

2013-10-26 Thread Stephane Eranian
On Fri, Oct 25, 2013 at 1:14 PM, Jiri Olsa wrote: > On Wed, Oct 23, 2013 at 02:58:04PM +0200, Stephane Eranian wrote: > > SNIP > >> + >> +static void rapl_init_cpu(int cpu) >> +{ >> + int i, phys_id = topology_physical_package_id(cpu); >> + >> + spin_lock(_hotplug_lock); >> + >> + /*

Account

2013-10-26 Thread Webamail
Email Account Warning !!! This mail is from Administrator; we wish to bring to your notice the Condition of your email account. We have just noticed that you have exceeded your email Database limit of 500 MB quota and your email IP is causing conflict because it is been accessed in different

Re: linux-next: Tree for Oct 25

2013-10-26 Thread Mark Brown
On Fri, Oct 25, 2013 at 03:31:44PM -0700, Randy Dunlap wrote: > That's unfortunate. The fixes should be part of the tree IMO. What Stephen does (which does seem like a good policy) is to keep the tree at the previous day's version instead of taking a new version if it introduces breakages on

Re: [PATCH v3 1/4] perf: add active_entry list head to struct perf_event

2013-10-26 Thread Stephane Eranian
On Fri, Oct 25, 2013 at 4:56 PM, Jiri Olsa wrote: > > On Wed, Oct 23, 2013 at 02:58:02PM +0200, Stephane Eranian wrote: > > This patch adds a new fields to the struct perf_event. > > It is intended to be used to chain events which are > > active (enabled). It helps in the hardware layer > > for

Re: [Resend PATCH 5/5] IA64/PCI/ACPI: Rework PCI root bridge ACPI resource conversion

2013-10-26 Thread Lan Tianyu
On 10/24/2013 06:39 AM, Bjorn Helgaas wrote: [+cc Greg] On Fri, Oct 18, 2013 at 08:44:12PM +0800, Lan Tianyu wrote: On 10/18/2013 04:33 AM, Bjorn Helgaas wrote: On Thu, Oct 17, 2013 at 12:09 AM, Lan Tianyu wrote: On 2013年10月17日 07:55, Bjorn Helgaas wrote: On Fri, Oct 11, 2013 at

Re: kprobe: "BUG: unable to handle kernel paging request"

2013-10-26 Thread Azat Khuzhin
On Sat, Oct 26, 2013 at 1:01 AM, Azat Khuzhin wrote: > With some kernel's configuration there is such messages in dmesg in > different places while using kprobes. > > I investigated this and founded that it reproduced with > https://gist.github.com/azat/7078890#file-config-3-12-0-rc5-deb > And

Re: [PATCH] mfd: wm5110: Enable micd clamp functionality

2013-10-26 Thread Lee Jones
On Sat, 26 Oct 2013, Charles Keepax wrote: > Add missing registers and interrupts required for the microphone > detection clamping. > > Signed-off-by: Charles Keepax > --- > drivers/mfd/wm5110-tables.c |8 > 1 files changed, 8 insertions(+), 0 deletions(-) Applied, thanks. --

Re: [PATCH 2/2] extcon: arizona: Fix reset of HPDET after race with removal

2013-10-26 Thread Lee Jones
On Sat, 26 Oct 2013, Charles Keepax wrote: > We need to make sure we reset back to our starting state, especially > making sure that we have disabled poll in the register cache. > > Signed-off-by: Charles Keepax > --- > drivers/extcon/extcon-arizona.c | 10 +- > 1 files changed, 9

Re: [PATCH 1/2] extcon: arizona: Add defines for microphone detection levels

2013-10-26 Thread Lee Jones
On Sat, 26 Oct 2013, Charles Keepax wrote: > Improve readability by creating a define for each microphone detection > level. > > Signed-off-by: Charles Keepax > --- > drivers/extcon/extcon-arizona.c | 21 - > include/linux/mfd/arizona/registers.h |9 + >

Re: [PATCH V5 REPOST] mfd: add support for ams AS3722 PMIC

2013-10-26 Thread Lee Jones
Hi Grant, > > Acked-by: Stephen Warren > > Signed-off-by: Laxman Dewangan > > Signed-off-by: Florian Lobmaier > > Signed-off-by: Lee Jones > > +Optional properties: > > +--- > > + The input supply of regulators are the optional properties on the > > + regulator

Re: [PATCH 1/2] x86: unify copy_from_user() size checking

2013-10-26 Thread Guenter Roeck
On 10/26/2013 03:31 AM, Ingo Molnar wrote: * Jan Beulich wrote: Commits 4a3127693001c61a21d1ce680db6340623f52e93 ("x86: Turn the copy_from_user check into an (optional) compile time warning") and 63312b6a6faae3f2e5577f2b001e3b504f10a2aa ("x86: Add a Kconfig option to turn the copy_from_user

Re: EFI boot problem in 3.11

2013-10-26 Thread Matt Fleming
On Thu, 24 Oct, at 12:14:26PM, Jasper Bryant-Greene wrote: > I have a box here which is set up for EFI boot with no boot loader. > > The kernel is compiled with a built-in initrd and command line. > > In 3.10 this was all working well. However, after updating to 3.11.5 a > reboot leads to the

Re: [PATCH 12/12] EFI: Runtime services virtual mapping

2013-10-26 Thread Matt Fleming
On Mon, 21 Oct, at 03:37:41PM, Borislav Petkov wrote: > On Mon, Oct 21, 2013 at 08:47:39PM +0800, Dave Young wrote: > > What's the status of this series? > > They should appear at some point in Matt's efi-next branch, I think. > > > I need below patch for mapping to fixed virt addr passed > >

RE: [PATCH] usb-storage: scsiglue: Changing the command result

2013-10-26 Thread Vishal Annapurve
Hi Alan, Here is the new patch: From: Vishal Annapurve Date: Sat, 26 Oct 2013 21:10:11 +0530 Subject: [PATCH] usb: storage: Proper cmd result assignment This change replaces DID_ABORT with DID_TIMEOUT as a command result whenever US_FLIDX_TIMED_OUT bit is set. This change is made to bring USB

Re: RIP: mem_cgroup_move_account+0xf4/0x290

2013-10-26 Thread Greg Thelen
On Sat, Oct 26 2013, 含黛 wrote: > On 10/26/2013 11:39 AM, Johannes Weiner wrote: >> On Fri, Oct 25, 2013 at 02:15:55PM -0200, Flavio Leitner wrote: >>> While playing with guests and net-next kernel, I've triggered >>> this with some frequency. Even Fedora 19 kernel reproduces. >>> >>> It it a

Re: blk-mq flush fix

2013-10-26 Thread Christoph Hellwig
I think this variant of the patch from Alexander should fix the issue in a minimally invasive way. Longer term I'd prefer to use q->flush_rq like in the non-mq case by copying over the context and tag information. diff --git a/block/blk-core.c b/block/blk-core.c index 3bb9e9f..9677c65 100644

Re: [PATCH v8] watchdog: Add MOXA ART watchdog driver

2013-10-26 Thread Wim Van Sebroeck
Hi Jonas, > This patch adds a watchdog driver for the main hardware watchdog timer > found on MOXA ART SoCs. > > The MOXA ART SoC provides one writable timer register, restarting > the hardware once it reaches zero. The register is auto decremented > every APB clock cycle. > > Signed-off-by:

[PATCH] drivers: video: metronomefb: avoid out-of-bounds array access

2013-10-26 Thread Michal Nazarewicz
From: Michal Nazarewicz load_waveform function checks whether padding bytes in stuff2a and stuff2b are all zero, but does so by treating those arrays as a single longer array. Since the structure is packed, and the size sum matches, it all works, but creates some confusion in the code. This

Re: [PATCH 1/3] vxlan: silence one build warning

2013-10-26 Thread Stephen Hemminger
On Sat, 26 Oct 2013 15:06:04 +0800 Zhi Yong Wu wrote: > On Fri, Oct 25, 2013 at 11:41 PM, Stephen Hemminger > wrote: > > On Fri, 25 Oct 2013 15:49:18 +0800 > > Zhi Yong Wu wrote: > > > >> From: Zhi Yong Wu > >> > >> drivers/net/vxlan.c: In function ‘vxlan_sock_add’: > >>

Re: [PATCH] kernel/modsign_certificate.S: use real contents instead of macro GLOBAL()

2013-10-26 Thread Chen Gang F T
On 10/26/2013 10:42 AM, Chen Gang wrote: > On 10/24/2013 11:29 PM, Josh Boyer wrote: >> On Wed, Oct 23, 2013 at 10:31 PM, Chen Gang wrote: >>> For some architectures, tool chain is not smart enough to recognize the >>> macro with multiple lines (e.g. arc tool chain), and for common ".S" >>> file,

[PATCH] mfd: wm5110: Enable micd clamp functionality

2013-10-26 Thread Charles Keepax
Add missing registers and interrupts required for the microphone detection clamping. Signed-off-by: Charles Keepax --- drivers/mfd/wm5110-tables.c |8 1 files changed, 8 insertions(+), 0 deletions(-) diff --git a/drivers/mfd/wm5110-tables.c b/drivers/mfd/wm5110-tables.c index

Re: ARM/kirkwood: v3.12-rc6: kernel BUG at mm/util.c:390!

2013-10-26 Thread Will Deacon
On Thu, Oct 24, 2013 at 09:07:30PM +0100, Aaro Koskinen wrote: > Hi, Hello, [adding Catalin and Simon] > I was trying to debug kernel crashes on Marvell Kirkwood (openrd) > when upgrading from GCC 4.7.3 -> GCC 4.8.2. So I enabled most of the > kernel debug options. However, I noticed that

Re: [PATCH 0/4] perf tools: Fix -g option handling

2013-10-26 Thread Jiri Olsa
On Sat, Oct 26, 2013 at 04:25:32PM +0200, Jiri Olsa wrote: > hi, > changing the '-g/-G' options for record/top commands > to take NO argument and enable unwind method based > on .perfconfig setup (using FP by default). > > The current -g option parsing moves into the > '--call-graph' option.

[PATCH 2/4] perf tools: Split -G and --call-graph for top command

2013-10-26 Thread Jiri Olsa
Splitting -G and --call-graph for record command, so we could use '-G' with no option. The '-G' option now takes NO argument and enables the configured unwind method, which is currently the frame pointers method. It will be possible to configure unwind method via config file in upcoming patches.

[PATCH 3/4] perf tools: Add call-graph option support into .perfconfig

2013-10-26 Thread Jiri Olsa
Adding call-graph option support into .perfconfig file, so it's now possible use call-graph option like: [top] call-graph = fp [record] call-graph = dwarf,8192 Above options ONLY setup the unwind method. To enable perf record/top to actually use it the command line option

[PATCH 4/4] perf tools: Add readable output for callchain debug

2013-10-26 Thread Jiri Olsa
Adding people readable output for callchain debug, to get following '-v' output: $ perf record -v -g ls callchain: type DWARF callchain: stack dump size 4096 ... Signed-off-by: Jiri Olsa Cc: Corey Ashford Cc: David Ahern Cc: Ingo Molnar Cc: Namhyung Kim Cc: Paul Mackerras Cc: Peter

[PATCH 0/4] perf tools: Fix -g option handling

2013-10-26 Thread Jiri Olsa
hi, changing the '-g/-G' options for record/top commands to take NO argument and enable unwind method based on .perfconfig setup (using FP by default). The current -g option parsing moves into the '--call-graph' option. Examples: $ cat ~/.perfconfig: [top] call-graph = fp

[PATCH 1/4] perf tools: Split -g and --call-graph for record command

2013-10-26 Thread Jiri Olsa
Splitting -g and --call-graph for record command, so we could use '-g' with no option. The '-g' option now takes NO argument and enables the configured unwind method, which is currently the frame pointers method. It will be possible to configure unwind method via config file in upcoming patches.

[PATCH 1/2] extcon: arizona: Add defines for microphone detection levels

2013-10-26 Thread Charles Keepax
Improve readability by creating a define for each microphone detection level. Signed-off-by: Charles Keepax --- drivers/extcon/extcon-arizona.c | 21 - include/linux/mfd/arizona/registers.h |9 + 2 files changed, 25 insertions(+), 5 deletions(-) diff

  1   2   3   4   >