为企业选拔优秀的人才是HR必备的基本素质

2016-04-13 Thread 林宗春
9P 高效招1聘与精准面1试法.xls Description: Binary data ___ devel mailing list de...@linuxdriverproject.org http://driverdev.linuxdriverproject.org/mailman/listinfo/driverdev-devel

RE: [PATCH v8 net-next 1/1] hv_sock: introduce Hyper-V Sockets

2016-04-13 Thread Dexuan Cui
> From: David Miller [mailto:da...@davemloft.net] > Sent: Thursday, April 14, 2016 10:30 > To: Dexuan Cui > Cc: gre...@linuxfoundation.org; net...@vger.kernel.org; linux- > ker...@vger.kernel.org; de...@linuxdriverproject.org; o...@aepfle.de; > a...@canonical.com;

[PATCH] staging: dgnc: use tty_alloc_driver instead of kcalloc

2016-04-13 Thread Daeseok Youn
The tty_alloc_driver() can allocate memory for ttys and termios. And also allocated memory will be released easily with put_tty_driver() call. Signed-off-by: Daeseok Youn --- drivers/staging/dgnc/dgnc_driver.h | 4 +- drivers/staging/dgnc/dgnc_tty.c| 144

[PATCH] staging: unisys: Documentation: Remove proc-entries.txt

2016-04-13 Thread David Kershner
From: David Binder Unisys drivers no longer utilize procfs. Therefore, the documentation for our procfs entries is no longer needed. Signed-off-by: David Binder Signed-off-by: David Kershner ---

RE: Staging: lustre: Make lustre_profile_list static

2016-04-13 Thread Simmons, James A.
>Variable lustre_profile_list is only used inside obd_config.c, >better make it static > >Signed-off-by: Iban Rodriguez Acked-by: James Simmons >--- > drivers/staging/lustre/lustre/obdclass/obd_config.c | 2 +- > 1 file changed, 1 insertion(+), 1

RE: [PATCH 00/19] staging: comedi: ni_mio_common: initial cleanup

2016-04-13 Thread Hartley Sweeten
On Wednesday, April 13, 2016 5:37 AM, Ian Abbott wrote: > On 12/04/16 22:12, H Hartley Sweeten wrote: >> This "driver" is is bit of a mess. It's included by the ni_atmio, ni_mio_cs, >> and ni_pcimio drivers instead of being a separate module. >> >> Do some cleanup so I can work out what is needed

RE: [PATCH 04/19] staging: comedi: ni_mio_common: tidy up DIO subdevice ifdef'ery

2016-04-13 Thread Hartley Sweeten
On Wednesday, April 13, 2016 5:04 AM, Ian Abbott wrote: > On 12/04/16 22:12, H Hartley Sweeten wrote: >> This file is is bit of a mess. It's included by the ni_atmio, ni_mio_cs, and >> ni_pcimio drivers. The ni_pcimio driver is the only one that uses DMA. It >> defines PCIDMA so that the dma code

Re: [PATCH v5 00/52] mtd: rework ECC layout definition

2016-04-13 Thread Boris Brezillon
On Wed, 30 Mar 2016 18:14:15 +0200 Boris Brezillon wrote: > Hello, > > Hopefully the last version of this patchset (but don't be sad, I'm not > done bothering you with NAND related patches :-)). > > If possible, I'd like to have as much

[PATCH] staging: unisys: added display string size define

2016-04-13 Thread David Kershner
From: Erik Arfvidson Display string size that is guaranteed to be no longer the 99 characters. Don't use a magic number throughout the code, define it once and use it throughout. Signed-off-by: Erik Arfvidson Signed-off-by: David Kershner

[PATCH v2 1/1] staging: unisys: visornic: convert BUG_ON to dev_err() message

2016-04-13 Thread David Kershner
From: Tim Sell The caller of visor_copy_fragsinfo_from_skb() is prepared to log a dev_err() message if it fails (by returning a negative value), so we now just fail in the one occasion where visor_copy_fragsinfo_from_skb() was doing a BUG_ON. There was also a problem

[PATCH v2 0/1] staging: unisys: convert BUG_ON to dev_err() message

2016-04-13 Thread David Kershner
This is the resend of the patch covert BUG_ON to dev_err() message. changes since v1: - Updated patch to return an actual error instead of -1 Tim Sell (1): staging: unisys: visornic: convert BUG_ON to dev_err() message drivers/staging/unisys/visornic/visornic_main.c | 8 +++- 1 file

Re: [PATCH v5 04/50] mtd: nand: atmel: use mtd_ooblayout_xxx() helpers where appropriate

2016-04-13 Thread Nicolas Ferre
Le 30/03/2016 18:14, Boris Brezillon a écrit : > The mtd_ooblayout_xxx() helper functions have been added to avoid direct > accesses to the ecclayout field, and thus ease for future reworks. > Use these helpers in all places where the oobfree[] and eccpos[] arrays > where directly accessed. > >

Re: [PATCH v5 22/50] mtd: nand: atmel: switch to mtd_ooblayout_ops

2016-04-13 Thread Nicolas Ferre
Le 30/03/2016 18:14, Boris Brezillon a écrit : > Implementing the mtd_ooblayout_ops interface is the new way of exposing > ECC/OOB layout to MTD users. > > Signed-off-by: Boris Brezillon It seems good: Reviewed-by: Nicolas Ferre

RE: [PATCH 4/6] staging: fsl-mc: Use platform_msi_* infrastructure

2016-04-13 Thread Stuart Yoder
> -Original Message- > From: Matthias Brugger [mailto:mbrug...@suse.com] > Sent: Wednesday, April 13, 2016 6:23 AM > To: Marc Zyngier ; gre...@linuxfoundation.org; > robh...@kernel.org; > frowand.l...@gmail.com; grant.lik...@linaro.org; german.riv...@freescale.com;

Re: [PATCH v5 22/50] mtd: nand: atmel: switch to mtd_ooblayout_ops

2016-04-13 Thread Boris Brezillon
On Wed, 30 Mar 2016 18:14:37 +0200 Boris Brezillon wrote: > Implementing the mtd_ooblayout_ops interface is the new way of exposing > ECC/OOB layout to MTD users. > > Signed-off-by: Boris Brezillon Tested with

Re: [PATCH v5 04/50] mtd: nand: atmel: use mtd_ooblayout_xxx() helpers where appropriate

2016-04-13 Thread Boris Brezillon
On Wed, 30 Mar 2016 18:14:19 +0200 Boris Brezillon wrote: > The mtd_ooblayout_xxx() helper functions have been added to avoid direct > accesses to the ecclayout field, and thus ease for future reworks. > Use these helpers in all places where the oobfree[] and

CONGRATULATION

2016-04-13 Thread infoprox_agency
Attn: Lucky Winner FINAL AWARD WINNING PRIZE NOTIFICATION We are pleased to inform you, the beneficiary whose name is on this letter of notification about the release of the awaited delayed result, of our EuroMillones Promotion Lotto Program

CONGRATULATION

2016-04-13 Thread infoprox_agency
Attn: Lucky Winner FINAL AWARD WINNING PRIZE NOTIFICATION We are pleased to inform you, the beneficiary whose name is on this letter of notification about the release of the awaited delayed result, of our EuroMillones Promotion Lotto Program

Re: [PATCH 00/19] staging: comedi: ni_mio_common: initial cleanup

2016-04-13 Thread Ian Abbott
On 12/04/16 22:12, H Hartley Sweeten wrote: This "driver" is is bit of a mess. It's included by the ni_atmio, ni_mio_cs, and ni_pcimio drivers instead of being a separate module. Do some cleanup so I can work out what is needed to make it a module. This fixes all the checkpatch.pl issues

Re: [PATCH 1/6] of/irq: Export of_msi_get_domain

2016-04-13 Thread Rob Herring
On Wed, Apr 13, 2016 at 5:30 AM, Matthias Brugger wrote: > From: Matthias Brugger > > Export of_mis_get_domain to enable it for users from outside. > > Signed-off-by: Matthias Brugger > --- > drivers/of/irq.c | 1 + > 1 file

Re: [PATCH 4/6] staging: fsl-mc: Use platform_msi_* infrastructure

2016-04-13 Thread Marc Zyngier
On 13/04/16 12:23, Matthias Brugger wrote: > > > On 13/04/16 12:56, Marc Zyngier wrote: >> On 13/04/16 11:30, Matthias Brugger wrote: >>> From: Matthias Brugger >>> >>> The fsl-mc driver can't be build as a module because it uses msi_* >>> functions directly. Port the

Hello Friend

2016-04-13 Thread Amina
Dear Friend, I am Mrs. Amina Gunnarsson, married to Late Engr Brown Gunnarsson Danbazu {PhD} who worked with MULTINATIONAL OIL COMPANY EXXON AS A DRILLINGRIG SUPPLIER in Saudi Arabia for 19 years before he died on the 27th of August, 2010. We were married for twenty four years

Re: [PATCH 04/19] staging: comedi: ni_mio_common: tidy up DIO subdevice ifdef'ery

2016-04-13 Thread Ian Abbott
On 12/04/16 22:12, H Hartley Sweeten wrote: This file is is bit of a mess. It's included by the ni_atmio, ni_mio_cs, and ni_pcimio drivers. The ni_pcimio driver is the only one that uses DMA. It defines PCIDMA so that the dma code is compiled it. This causes a bunch of ifdef'ery in the file.

Re: [PATCH 4/6] staging: fsl-mc: Use platform_msi_* infrastructure

2016-04-13 Thread Matthias Brugger
On 13/04/16 12:56, Marc Zyngier wrote: On 13/04/16 11:30, Matthias Brugger wrote: From: Matthias Brugger The fsl-mc driver can't be build as a module because it uses msi_* functions directly. Port the driver to use the platform_msi_* infrastructure instead, to allow

Re: [PATCH 4/6] staging: fsl-mc: Use platform_msi_* infrastructure

2016-04-13 Thread Marc Zyngier
On 13/04/16 11:30, Matthias Brugger wrote: > From: Matthias Brugger > > The fsl-mc driver can't be build as a module because it uses msi_* > functions directly. Port the driver to use the platform_msi_* > infrastructure instead, to allow it to be build as a module. > >

[PATCH 2/6] base: Export platform_msi_create_irq_domain

2016-04-13 Thread Matthias Brugger
From: Matthias Brugger Export platform_msi_create_irq_domain to make it useable from within modules. Signed-off-by: Matthias Brugger --- drivers/base/platform-msi.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/base/platform-msi.c

[PATCH 5/6] staging: fsl-mc: Clean up of irq_chip callbacks

2016-04-13 Thread Matthias Brugger
platform_msi_create_irq_domain already sets the irq_chip callbacks accordingly. We don't need to define them explicitly in the driver. Signed-off-by: Matthias Brugger --- drivers/staging/fsl-mc/bus/irq-gic-v3-its-fsl-mc-msi.c | 3 --- 1 file changed, 3 deletions(-) diff

staging: fsl-mc: Convert to use platform_msi infrastrucutre

2016-04-13 Thread Matthias Brugger
Freescale MC driver can't be build as module as it uses it's own msi implementation. This patch set converts the driver to use platform_msi infrastructure instead, so that we can build the driver as a module. Apart from that we have to export some functions of the msi framework to handle the

[PATCH 4/6] staging: fsl-mc: Use platform_msi_* infrastructure

2016-04-13 Thread Matthias Brugger
From: Matthias Brugger The fsl-mc driver can't be build as a module because it uses msi_* functions directly. Port the driver to use the platform_msi_* infrastructure instead, to allow it to be build as a module. Signed-off-by: Matthias Brugger ---

[PATCH 3/6] genirq/msi: Export msi_get_domain_info

2016-04-13 Thread Matthias Brugger
From: Matthias Brugger Allow modules to call msi_get_domain_info. Signed-off-by: Matthias Brugger --- kernel/irq/msi.c | 1 + 1 file changed, 1 insertion(+) diff --git a/kernel/irq/msi.c b/kernel/irq/msi.c index 38e89ce..9b0ba4a 100644 ---

[PATCH 1/6] of/irq: Export of_msi_get_domain

2016-04-13 Thread Matthias Brugger
From: Matthias Brugger Export of_mis_get_domain to enable it for users from outside. Signed-off-by: Matthias Brugger --- drivers/of/irq.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/of/irq.c b/drivers/of/irq.c index e7bfc17..9f8cd6a

[PATCH 6/6] Revert "staging: fsl-mc: Do not allow building as a module"

2016-04-13 Thread Matthias Brugger
From: Matthias Brugger This reverts commit ("staging: fsl-mc: Do not allow building as a module") Signed-off-by: Matthias Brugger --- drivers/staging/fsl-mc/bus/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git