Re: S3 resume regression [1cf4f629d9d2 ("cpu/hotplug: Move online calls to hotplugged cpu")]

2016-11-08 Thread Feng Tang
On Wed, Nov 02, 2016 at 04:47:37AM +0800, Ville Syrjälä wrote: > On Fri, Oct 28, 2016 at 08:58:41PM +0200, Thomas Gleixner wrote: > > On Fri, 28 Oct 2016, Ville Syrjälä wrote: > > > On Thu, Oct 27, 2016 at 10:41:18PM +0200, Thomas Gleixner wrote: > > > > On Thu, 27 Oct 2016, Ville Syrjälä wrote: >

Re: [lustre-devel] [PATCH] staging: lustre: ldlm: pl_recalc time handling is wrong

2016-11-08 Thread Dilger, Andreas
On Nov 7, 2016, at 19:47, James Simmons wrote: > > The ldlm_pool field pl_recalc_time is set to the current > monotonic clock value but the interval period is calculated > with the wall clock. This means the interval period will > always be far larger than the pl_recalc_period, which is > just a

drm/bridge: analogix_dp: clear psr_support when disable_bridge

2016-11-08 Thread Caesar Wang
From: zain wang Don't run psr work during enabling bridge when you restart ui, it may make link training fail since there is a race between them in AUX CH resource. Signed-off-by: zain wang Signed-off-by: Caesar Wang Cc: Tomeu Vizoso Cc: dri-de...@lists.freedesktop.org Cc: Sean Paul --- BTW

Re: [PATCH v4 0/3] Make core_pattern support namespace

2016-11-08 Thread Cao Shufeng/曹树烽
ping 在 2016-10-25二的 15:28 +0800,Cao Shufeng写道: > This patchset includes following function points: > 1: Let usermodehelper function possible to set pid namespace >done by: [PATCH v4 1/3] Make call_usermodehelper_exec possible >to set pid namespace. > 2: Let pipe_type core_pattern write dump

linux-next: build warning after merge of the akpm-current tree

2016-11-08 Thread Stephen Rothwell
Hi Andrew, After merging the akpm-current tree, today's linux-next build (powerpc ppc64_defconfig) produced this warning: mm/hugetlb.c:1166:21: warning: 'alloc_gigantic_page' defined but not used [-Wunused-function] static struct page *alloc_gigantic_page(int nid, unsigned int order)

Re: [PATCH 3.12 00/72] 3.12.67-stable review

2016-11-08 Thread Guenter Roeck
On 11/08/2016 07:40 AM, Jiri Slaby wrote: On 11/07/2016, 06:16 PM, Guenter Roeck wrote: On 11/07/2016 05:04 AM, Jiri Slaby wrote: This is the start of the stable review cycle for the 3.12.67 release. There are 72 patches in this series, all will be posted as a response to this one. If anyone h

linux-next: manual merge of the akpm tree with the jc_docs tree

2016-11-08 Thread Stephen Rothwell
Hi Andrew, Today's linux-next merge of the akpm tree got a conflict in: Documentation/admin-guide/kernel-parameters.rst between commit: e52347bd66f6 ("Documentation/admin-guide: split the kernel parameter list to a separate file") from the jc_docs tree and patch: "ima: define a canonic

Re: [PATCH 1/4] x86/cpufeature: Add User-Mode Instruction Prevention definitions

2016-11-08 Thread Ricardo Neri
On Tue, 2016-11-08 at 07:32 -0800, Andy Lutomirski wrote: > > diff --git a/arch/x86/include/asm/disabled-features.h > b/arch/x86/include/asm/disabled-features.h > > index 85599ad..4707445 100644 > > --- a/arch/x86/include/asm/disabled-features.h > > +++ b/arch/x86/include/asm/disabled-features.h >

Re: [PATCH 0/4] x86: enable User-Mode Instruction Prevention

2016-11-08 Thread Ricardo Neri
On Tue, 2016-11-08 at 17:52 +0100, Thomas Gleixner wrote: > On Tue, 8 Nov 2016, Andy Lutomirski wrote: > > On Tue, Nov 8, 2016 at 5:16 AM, Peter Zijlstra wrote: > > > On Mon, Nov 07, 2016 at 10:12:09PM -0800, Ricardo Neri wrote: > > >> There is a caveat, however. Certain applications running in vi

Re: [PATCH 2/4] x86: Prepare vm86 tasks to handle User-Mode Instruction Prevention

2016-11-08 Thread Ricardo Neri
On Tue, 2016-11-08 at 18:00 +0100, Peter Zijlstra wrote: > > > + } > > > +#endif > > > + > > > > NAK. If this code is going to exist, it needs to be deeply buried > in > > some unlikely if statement that already exists. There's no good > > reason to penalize all context switches to support

Re: [PATCH v1 03/11] drivers: soc: hisi: Add support for Hisilicon Djtag driver

2016-11-08 Thread Anurup M
On Tuesday 08 November 2016 08:38 PM, Arnd Bergmann wrote: On Tuesday, November 8, 2016 7:16:30 PM CET Anurup M wrote: If these are backwards compatible, just mark them as compatible in DT, e.g. hip06 can use compatible = "hisilicon,hip06-cpu-djtag-v1", "hisilicon,hip05-cpu-djtag-v1"; so

Re: [PATCH 0/4] x86: enable User-Mode Instruction Prevention

2016-11-08 Thread Ricardo Neri
On Tue, 2016-11-08 at 07:34 -0800, Andy Lutomirski wrote: > > Would it not be better to emulate these instructions for them? What > way > > we can verify they're not malicious. > > Forget malice -- if they are really needed for some silly vm86-using > program, let's trap them and emulate them so t

[PATCH 07/11] mtd: nand: denali: use managed devm_irq_request()

2016-11-08 Thread Masahiro Yamada
Use the managed variant instead of request_irq() and free_irq(). Signed-off-by: Masahiro Yamada --- drivers/mtd/nand/denali.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/drivers/mtd/nand/denali.c b/drivers/mtd/nand/denali.c index 548278b..44e075a 100644 --- a/driver

[PATCH 08/11] mtd: nand: denali: return error code from devm_request_irq() on error

2016-11-08 Thread Masahiro Yamada
The devm_request_irq() returns an appropriate error value when it fails. Use it instead of the fixed -ENODEV. While we are here, reword the comment to make it fit in a single line, fixing the misspelling of "initialization". Signed-off-by: Masahiro Yamada --- drivers/mtd/nand/denali.c | 12 ++

[PATCH 10/11] mtd: nand: denali: remove unneeded parentheses

2016-11-08 Thread Masahiro Yamada
Remove parentheses surrounding the whole right side of an assignment. Signed-off-by: Masahiro Yamada --- drivers/mtd/nand/denali.c | 14 +++--- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/drivers/mtd/nand/denali.c b/drivers/mtd/nand/denali.c index d482d8d..14e66ab 1006

[PATCH 09/11] mtd: nand: denali: return error code from nand_scan_ident/tail on error

2016-11-08 Thread Masahiro Yamada
The nand_scan_ident/tail() returns an appropriate error value when it fails. Use it instead of the fixed -ENXIO. Signed-off-by: Masahiro Yamada --- drivers/mtd/nand/denali.c | 10 -- 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/drivers/mtd/nand/denali.c b/drivers/mtd/n

[PATCH 11/11] mtd: nand: denali: remove debug lines of __FILE__, __LINE__, __func__

2016-11-08 Thread Masahiro Yamada
Such debug lines might be useful when debugging the driver first, but should be deleted from the upstream code. Signed-off-by: Masahiro Yamada --- drivers/mtd/nand/denali.c | 12 1 file changed, 12 deletions(-) diff --git a/drivers/mtd/nand/denali.c b/drivers/mtd/nand/denali.c ind

[PATCH 00/11] mtd: nand: denali: first round of cleanups of Denali NAND driver

2016-11-08 Thread Masahiro Yamada
I am tackling on this driver to use it for my SoCs. The difficulty is a bunch of platform specific stuff (more specifically, Intel MRST specific) is hard-coded in this driver. I need lots of rework to utilize the driver for generic cases, but at the same time, I found the driver code is really di

[PATCH 05/11] mtd: nand: denali: remove "Spectra:" prefix from printk strings

2016-11-08 Thread Masahiro Yamada
As far as I understood from the Kconfig menu deleted by commit be7f39c5ecf5 ("Staging: delete spectra driver"), the "Spectra" is specific to Intel Moorestown Platform. The Denali NAND controller IP is used for various SoCs such as Altera SOCFPGA, Socionext UniPhier, etc. The platform specific str

[PATCH 06/11] mtd: nand: denali: remove unused struct member totalblks, blksperchip

2016-11-08 Thread Masahiro Yamada
The denali->blksperchip is set, but not referenced any more. The denali->totalblks is used only for calculating denali->blksperchip. Both of them are unneeded. Signed-off-by: Masahiro Yamada --- drivers/mtd/nand/denali.c | 8 drivers/mtd/nand/denali.h | 2 -- 2 files changed, 10 delet

[PATCH 03/11] mtd: nand: denali: remove bogus comment about interrupt handler setup

2016-11-08 Thread Masahiro Yamada
The interrupt handler is setup in denali_init(), not in denali_drv_init(). This comment is false. Such a comment adds no value, so just delete it instead of move. Signed-off-by: Masahiro Yamada --- drivers/mtd/nand/denali.c | 1 - 1 file changed, 1 deletion(-) diff --git a/drivers/mtd/nand/d

[PATCH 01/11] mtd: nand: denali: remove unneeded includes

2016-11-08 Thread Masahiro Yamada
The driver calls devm_kzalloc()/devm_kfree() to allocate/free memory. They are declared in , not in . Signed-off-by: Masahiro Yamada --- drivers/mtd/nand/denali.c | 1 - drivers/mtd/nand/denali_dt.c | 1 - drivers/mtd/nand/denali_pci.c | 1 - 3 files changed, 3 deletions(-) diff --git a/d

[PATCH 02/11] mtd: nand: denali: remove unused struct member denali_nand_info::idx

2016-11-08 Thread Masahiro Yamada
The struct member "idx" was used as an index for debug_array long ago, but the DEBUG_DENALI feature was removed by commit 7cfffac06ca0 ("nand/denali: use dev_xx debug function to replace nand_dbg_print and some printk"). Since then, this has been only initialized, but never referenced. Signed-off

[PATCH 04/11] mtd: nand: denali: remove detect_partition_feature()

2016-11-08 Thread Masahiro Yamada
The denali->fwblks is set by detect_partition_feature(), but it is not referenced from anywhere. That means the struct member fwblks and the whole of detect_partition_feature() are unneeded. The comment block implies this function is only for Intel platforms. I found drivers/staging/spectra used

Re: support for partial irq affinity assignment V3

2016-11-08 Thread Jens Axboe
On 11/08/2016 06:15 PM, Christoph Hellwig wrote: This series adds support for automatic interrupt assignment to devices that have a few vectors that are set aside for admin or config purposes and thus should not fall into the general per-cpu assginment pool. The first patch adds that support to

linux-next: Tree for Nov 9

2016-11-08 Thread Stephen Rothwell
Hi all, Changes since 20161108: The drm-misc tree gained a build failure, so I used the version from next-20161108. The sound-asoc tree still had its build failure, so I used the version from next-20161028. The scsi-mkp tree gained conflicts against the block and scsi trees. The rtc tree lost

Re: [PATCH 0/3] add ION driver for STIh4xx SoC

2016-11-08 Thread Laura Abbott
On 11/08/2016 01:18 AM, Benjamin Gaignard wrote: > Ok so no more dev on ION but can we add ION drivers like hisilicon does ? > If we can agree upon bindings, yes I think it would make sense to have more platform support. Ideally, it would translate over to newer features as well. Thanks, Laura

Re: [PATCH v2 00/12] mm: page migration enhancement for thp

2016-11-08 Thread Naoya Horiguchi
On Wed, Nov 09, 2016 at 01:32:04PM +1100, Balbir Singh wrote: > On 08/11/16 10:31, Naoya Horiguchi wrote: > > Hi everyone, > > > > I've updated thp migration patches for v4.9-rc2-mmotm-2016-10-27-18-27 > > with feedbacks for ver.1. > > > > General description (no change since ver.1) > > =

[PATCH] cpupower: Warn if values are truncated in frequency-info

2016-11-08 Thread Akshay Adiga
frequency-info currently rounds the frequnecy values to 2 decimal places while printing "available frequency steps". Hence frequencies with 3rd decimal place being greater than 5 will be rounded to next higher number like 2.227GHz will be rounded to 2.23Ghz. On setting this frequency, using "cpupow

Re: [Resend][PATCH] cpufreq: conservative: Decrease frequency faster when the timer deferred

2016-11-08 Thread Viresh Kumar
On 08-11-16, 21:25, Stratos Karafotis wrote: > But this is the supposed behaviour of conservative governor. We want > the CPU to increase the frequency in steps. The patch just resets > the frequency to a lower frequency in case of idle. > > For argument's sake, let's assume that the governor time

Re: [PATCH] ASoC: lpass-platform: initialize dma channel number

2016-11-08 Thread Kenneth Westfield
On Tue, Nov 08, 2016 at 02:38:52PM +0100, Arnd Bergmann wrote: > A bugfix accidentally removed the implicit initialization of the > dma channel number, causing undefined behavior when > v->alloc_dma_channel is NULL: > > sound/soc/qcom/lpass-platform.c: In function ‘lpass_platform_pcmops_open’: > s

Re: S3 resume regression [1cf4f629d9d2 ("cpu/hotplug: Move online calls to hotplugged cpu")]

2016-11-08 Thread Linus Torvalds
On Tue, Nov 8, 2016 at 7:54 PM, Feng Tang wrote: > On Wed, Nov 02, 2016 at 04:47:37AM +0800, Ville Syrjälä wrote: >> >> I left the thing running for the weekend and it failed 26 out of 16057 >> times with the 25ms timeout. Looks like it takes ~5 minutes to resume >> when it fails, but eventually i

Re: [PATCH 1/3] kbuild: add -fno-PIE

2016-11-08 Thread Ingo Molnar
* Michal Marek wrote: > On Fri, Nov 04, 2016 at 07:39:38PM +0100, Sebastian Andrzej Siewior wrote: > > Debian started to build the gcc with -fPIE by default so the kernel > > build ends before it starts properly with: > > |kernel/bounds.c:1:0: error: code model kernel does not support PIC mode >

[PATCH 2/2] rcu: Force resched_cpu when jiffies >= rcu_state.jiffies_resched

2016-11-08 Thread Byungchul Park
Currently rcu code forces CPU into scheduler when jiffies >= rcu_state.gp_start + jiffies_till_sched_qs, via resched_cpu(). It would be better to force CPU into scheduler when jiffies >= rcu_state.jiffies_resched, too. Signed-off-by: Byungchul Park --- kernel/rcu/tree.c | 5 ++--- 1 file change

[PATCH 1/2] rcu: Remove unnecessary condition in rcu_implicit_dynticks_qs

2016-11-08 Thread Byungchul Park
Given two conditions like, COND 1. jiffies >= rdp->rsp->gp_start + 2 * jiffies_till_sched_qs COND 2. jiffies >= rdp->rsp->gp_start + jiffies_till_sched_qs A set of jiffies satisfying COND 2 includes another set satisfying COND 1. Thus COND 1 can be removed from a condition, (COND 1 || COND 2). S

Re: [PATCH] crypto: rsa: rename two rsa key files

2016-11-08 Thread yjin
Thanks for Herbert's reminder. I have drop this patch in a previous mail. Regards! Yanjiang On 2016年11月08日 20:09, Herbert Xu wrote: yanjiang@windriver.com wrote: From: Yanjiang Jin This is to eliminate the below compile error: crypto/rsa_helper.c:19:29: fatal error: rsaprivkey-asn1.h: N

Re: [PATCH v5 2/5] driver core: Functional dependencies tracking support

2016-11-08 Thread Greg Kroah-Hartman
On Tue, Nov 08, 2016 at 09:58:24PM +0100, Luis R. Rodriguez wrote: > > > Furthermore -- how does this framework compare to Andrzej's resource > > > tracking > > > solution? I confess I have not had a chance yet to review yet but in > > > light of > > > this question it would be good to know if An

Re: [PATCH] staging: iio: ad9832: allocate data before using

2016-11-08 Thread Eva Rachel Retuya
On Tue, Nov 08, 2016 at 03:00:49PM +0100, Arnd Bergmann wrote: > The regulator changes assigned data to an uninitialized pointer: > > drivers/staging/iio/frequency/ad9832.c: In function 'ad9832_probe': > drivers/staging/iio/frequency/ad9832.c:214:11: error: 'st' may be used > uninitialized in thi

Re: [PATCH 1/2] kernel: Move prctl and helpers from kernel/sys.c to new kernel/prctl.c

2016-11-08 Thread Cyrill Gorcunov
On Tue, Nov 08, 2016 at 04:18:13PM -0800, Josh Triplett wrote: > This prepares for making prctl optional. > > Signed-off-by: Josh Triplett > + ... > +static int prctl_set_mm_exe_file(struct mm_struct *mm, unsigned int fd) > +{ > + struct fd exe; > + struct file *old_exe, *exe_file; > +

Re: [PATCH 2/7] genirq/affinity: Handle pre/post vectors in irq_calc_affinity_vectors()

2016-11-08 Thread Hannes Reinecke
On 11/09/2016 02:15 AM, Christoph Hellwig wrote: Only calculate the affinity for the main I/O vectors, and skip the pre or post vectors specified by struct irq_affinity. Also remove the irq_affinity cpumask argument that has never been used. If we ever need it in the future we can pass it throug

Re: [PATCH 3/7] genirq/affinity: Handle pre/post vectors in irq_create_affinity_masks()

2016-11-08 Thread Hannes Reinecke
On 11/09/2016 02:15 AM, Christoph Hellwig wrote: Only calculate the affinity for the main I/O vectors, and skip the pre or post vectors specified by struct irq_affinity. Also remove the irq_affinity cpumask argument that has never been used. If we ever need it in the future we can pass it throug

Re: [PATCH v4 1/3] leds: Introduce userspace leds driver

2016-11-08 Thread Pavel Machek
Hi! > >+struct uleds_device { > >+struct uleds_user_dev user_dev; > >+struct led_classdev led_cdev; > >+struct mutexmutex; > >+enum uleds_statestate; > >+wait_queue_head_t waitq; > >+unsigned char brightness; > > I've just noticed

Re: [PATCH for-next 03/11] IB/hns: Optimize the logic of allocating memory using APIs

2016-11-08 Thread Leon Romanovsky
On Fri, Nov 04, 2016 at 04:36:25PM +, Salil Mehta wrote: > From: "Wei Hu (Xavier)" > > This patch modified the logic of allocating memory using APIs in > hns RoCE driver. We used kcalloc instead of kmalloc_array and > bitmap_zero. And When kcalloc failed, call vzalloc to alloc > memory. > > Si

Re: [PATCH for-next 09/11] IB/hns: Change qpn allocation to round-robin mode.

2016-11-08 Thread Leon Romanovsky
On Fri, Nov 04, 2016 at 04:36:31PM +, Salil Mehta wrote: > From: "Wei Hu (Xavier)" > > When using CM to establish connections, qp number that was freed > just now will be rejected by ib core. To fix these problem, We > change qpn allocation to round-robin mode. We added the round-robin > mode

Re: [PATCH 2/2] clk: pxa: fix pxa2xx_determine_rate return

2016-11-08 Thread Robert Jarzmik
Arnd Bergmann writes: > On Tuesday, November 8, 2016 7:01:57 PM CET Robert Jarzmik wrote: >> Arnd Bergmann writes: >> If a non-exact match is found, either by closest_below or closest_above, >> rate is >> set (rate = freqs[closest_xxx].cpll). And a couple of lines later after the >> if/else, re

[PATCH] net/mlx4_en: Fix bpf_prog_add ref_cnt in mlx4

2016-11-08 Thread Zhiyi Sun
There are rx_ring_num queues. Each queue will load xdp prog. So bpf_prog_add() should add rx_ring_num to ref_cnt. Signed-off-by: Zhiyi Sun --- drivers/net/ethernet/mellanox/mlx4/en_netdev.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/net/ethernet/mellanox/mlx4

[PATCH 2/3] vhost: better detection of available buffers

2016-11-08 Thread Jason Wang
We should use vq->last_avail_idx instead of vq->avail_idx in the checking of vhost_vq_avail_empty() since latter is the cached avail index from guest but we want to know if there's pending available buffers in the virtqueue. Signed-off-by: Jason Wang --- drivers/vhost/vhost.c | 2 +- 1 file chan

[PATCH 1/3] tuntap: rx batching

2016-11-08 Thread Jason Wang
Backlog were used for tuntap rx, but it can only process 1 packet at one time since it was scheduled during sendmsg() synchronously in process context. This lead bad cache utilization so this patch tries to do some batching before call rx NAPI. This is done through: - accept MSG_MORE as a hint fro

[PATCH 3/3] vhost_net: tx support batching

2016-11-08 Thread Jason Wang
This patch tries to utilize tuntap rx batching by peeking the tx virtqueue during transmission, if there's more available buffers in the virtqueue, set MSG_MORE flag for a hint for tuntap to batch the packets. The maximum number of batched tx packets were specified through a module parameter: tx_ba

Re: [PATCH 1/6] mm: khugepaged: fix radix tree node leak in shmem collapse error path

2016-11-08 Thread Jan Kara
On Tue 08-11-16 11:12:45, Johannes Weiner wrote: > On Tue, Nov 08, 2016 at 10:53:52AM +0100, Jan Kara wrote: > > On Mon 07-11-16 14:07:36, Johannes Weiner wrote: > > > The radix tree counts valid entries in each tree node. Entries stored > > > in the tree cannot be removed by simpling storing NULL

Re: Summary of LPC guest MSI discussion in Santa Fe

2016-11-08 Thread Auger Eric
Hi Will, On 08/11/2016 20:02, Don Dutile wrote: > On 11/08/2016 12:54 PM, Will Deacon wrote: >> On Tue, Nov 08, 2016 at 03:27:23PM +0100, Auger Eric wrote: >>> On 08/11/2016 03:45, Will Deacon wrote: Rather than treat these as separate problems, a better interface is to tell userspace abo

[tip:irq/core] genirq/affinity: Introduce struct irq_affinity

2016-11-08 Thread tip-bot for Christoph Hellwig
Commit-ID: 20e407e195b29a4f5a18d713a61f54a75f992bd5 Gitweb: http://git.kernel.org/tip/20e407e195b29a4f5a18d713a61f54a75f992bd5 Author: Christoph Hellwig AuthorDate: Tue, 8 Nov 2016 17:15:01 -0800 Committer: Thomas Gleixner CommitDate: Wed, 9 Nov 2016 08:25:08 +0100 genirq/affinity: Int

[tip:irq/core] genirq/affinity: Handle pre/post vectors in irq_calc_affinity_vectors()

2016-11-08 Thread tip-bot for Christoph Hellwig
Commit-ID: 212bd846223c718b6577d4df16fd8d05a55ad914 Gitweb: http://git.kernel.org/tip/212bd846223c718b6577d4df16fd8d05a55ad914 Author: Christoph Hellwig AuthorDate: Tue, 8 Nov 2016 17:15:02 -0800 Committer: Thomas Gleixner CommitDate: Wed, 9 Nov 2016 08:25:08 +0100 genirq/affinity: Han

[tip:irq/core] PCI/MSI: Propagate IRQ affinity description through the MSI code

2016-11-08 Thread tip-bot for Christoph Hellwig
Commit-ID: 61e1c5905290efe48bacda5e342d4af4cb1b923b Gitweb: http://git.kernel.org/tip/61e1c5905290efe48bacda5e342d4af4cb1b923b Author: Christoph Hellwig AuthorDate: Tue, 8 Nov 2016 17:15:04 -0800 Committer: Thomas Gleixner CommitDate: Wed, 9 Nov 2016 08:25:09 +0100 PCI/MSI: Propagate I

[tip:irq/core] genirq/affinity: Handle pre/post vectors in irq_create_affinity_masks()

2016-11-08 Thread tip-bot for Christoph Hellwig
Commit-ID: 67c93c218dc5d1b45d547771f1fdb44a381e1faf Gitweb: http://git.kernel.org/tip/67c93c218dc5d1b45d547771f1fdb44a381e1faf Author: Christoph Hellwig AuthorDate: Tue, 8 Nov 2016 17:15:03 -0800 Committer: Thomas Gleixner CommitDate: Wed, 9 Nov 2016 08:25:09 +0100 genirq/affinity: Han

[tip:irq/core] PCI/MSI: Provide pci_alloc_irq_vectors_affinity()

2016-11-08 Thread tip-bot for Christoph Hellwig
Commit-ID: 402723ad5c625ee052432698ae5e56b02d38d4ec Gitweb: http://git.kernel.org/tip/402723ad5c625ee052432698ae5e56b02d38d4ec Author: Christoph Hellwig AuthorDate: Tue, 8 Nov 2016 17:15:05 -0800 Committer: Thomas Gleixner CommitDate: Wed, 9 Nov 2016 08:25:10 +0100 PCI/MSI: Provide pci

[tip:irq/core] PCI: Remove the irq_affinity mask from struct pci_dev

2016-11-08 Thread tip-bot for Christoph Hellwig
Commit-ID: 0cf71b04467bc34063cecae577f12481da6cc565 Gitweb: http://git.kernel.org/tip/0cf71b04467bc34063cecae577f12481da6cc565 Author: Christoph Hellwig AuthorDate: Tue, 8 Nov 2016 17:15:06 -0800 Committer: Thomas Gleixner CommitDate: Wed, 9 Nov 2016 08:25:10 +0100 PCI: Remove the irq_

RE: [PATCH] mwifiex: printk() overflow with 32-byte SSIDs

2016-11-08 Thread Amitkumar Karwar
> From: Brian Norris [mailto:briannor...@chromium.org] > Sent: Wednesday, November 09, 2016 7:58 AM > To: Amitkumar Karwar; Nishant Sarmukadam; Kalle Valo > Cc: linux-kernel@vger.kernel.org; linux-wirel...@vger.kernel.org; Cathy > Luo; secur...@kernel.org; sta...@vger.kernel.org; Brian Norris > Sub

Re: support for partial irq affinity assignment V3

2016-11-08 Thread Thomas Gleixner
On Tue, 8 Nov 2016, Jens Axboe wrote: > On 11/08/2016 06:15 PM, Christoph Hellwig wrote: > > This series adds support for automatic interrupt assignment to devices > > that have a few vectors that are set aside for admin or config purposes > > and thus should not fall into the general per-cpu assg

<    5   6   7   8   9   10