HADIAH BONUS KHAS TAHUN BARU.

2016-04-17 Thread Nestle Malaysia Berhad
Nestle (Malaysia) Berhad 22-1, 22nd floor, Menara Surian No. 1, Jalan PJU 7/3 Mutiara Damansara 47810 Petaling Jaya Selangor, Malaysia. HADIAH BONUS KHAS TAHUN BARU. Kami berasa sukacita untuk memaklumkan kepada anda nantikan siaran keputusan Hadiah Bonus Nestle(Malaysia) Berhad khas yang diada

[PATCH 2/2] Staging: Lustre: Fixed coding style issues

2016-04-17 Thread Panos Vlachos
Fixed one coding style issue in the file router_proc.c (Lustre staging driver) Signed-off-by: Panos Vlachos --- drivers/staging/lustre/lnet/lnet/router_proc.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/drivers/staging/lustre/lnet/lnet/router_proc.c b/drivers/staging/l

Drivers/hv

2016-04-17 Thread K. Y. Srinivasan
Greg, Some time back I had sent a buch of patches for Hyper-V drivers. Are they still in the queue or should I resend them. Regards, K. Y ___ devel mailing list de...@linuxdriverproject.org http://driverdev.linuxdriverproject.org/mailman/listinfo/dri

[PATCH V2 05/11] staging: mt29f_spinand: set ECC algorithm explicitly

2016-04-17 Thread Rafał Miłecki
This is part of process deprecating NAND_ECC_SOFT_BCH (and switching to enum nand_ecc_algo). Signed-off-by: Rafał Miłecki --- drivers/staging/mt29f_spinand/mt29f_spinand.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/staging/mt29f_spinand/mt29f_spinand.c b/drivers/staging/mt29f_s

[PATCH V3 05/11] staging: mt29f_spinand: set ECC algorithm explicitly

2016-04-17 Thread Rafał Miłecki
This is part of process deprecating NAND_ECC_SOFT_BCH (and switching to enum nand_ecc_algo). Signed-off-by: Rafał Miłecki --- drivers/staging/mt29f_spinand/mt29f_spinand.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/staging/mt29f_spinand/mt29f_spinand.c b/drivers/staging/mt29f_s

Re: [PATCH 2/2] Staging: Lustre: Fixed coding style issues

2016-04-17 Thread Drokin, Oleg
On Apr 17, 2016, at 10:11 AM, Panos Vlachos wrote: > Fixed one coding style issue in the > file router_proc.c (Lustre staging driver) Perhaps it's best to reference what the issue is. I.e. "Fix too long line in …" and then in the actual message add that you just split it? > > Signed-off-by: Pan

[PATCH 4/4] drivers: staging: remove BUG_ON

2016-04-17 Thread tcharding
drivers/staging/android/ion/ion.c calls BUG_ON in places where WARN_ON will suffice. This patch replaces two such occurences. Two other occurences remain. Signed-off-by: tcharding --- Changing the remaining two BUG_ON's causes changes to the programm logic. This is my first patch set to the ke

[PATCH 1/4] drivers: staging: fix parameter alignment

2016-04-17 Thread tcharding
drivers/staging/android/ion/ion.c checkpatch produces alignment checks. This patch is whitespace only and fixes these checks. Signed-off-by: tcharding --- drivers/staging/android/ion/ion.c | 64 +++ 1 file changed, 32 insertions(+), 32 deletions(-) diff --gi

[PATCH 0/4] drivers: staging: checkpatch fixes

2016-04-17 Thread tcharding
drivers/staging/android/ion/ion.c produces 2 warnings and 29 checks. This patch set fixes both warnings and all but 4 of the checks. All except the last patch are trivial. Signed-off-by: tcharding --- Patch 1/4 is whitespace only. This is my first Linux kernel patch. thanks tcharding (4):

[PATCH 3/4] drivers: staging: remove comparison to NULL

2016-04-17 Thread tcharding
drivers/staging/android/ion/ion.c checkpatch produces 'Comparison to NULL could be written ...' checks. This patch replaces comparison to NULL with !var as suggested by checkpatch. Signed-off-by: tcharding --- drivers/staging/android/ion/ion.c | 6 +++--- 1 file changed, 3 insertions(+), 3 del

[PATCH 2/4] drivers: staging: fix line length

2016-04-17 Thread tcharding
drivers/staging/android/ion/ion.c checkpatch produces line over 80 character warnings. This patch is whitespace only and fixes these warnings. Signed-off-by: tcharding --- drivers/staging/android/ion/ion.c | 6 -- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/drivers/staging

Re: [PATCH 1/4] drivers: staging: fix parameter alignment

2016-04-17 Thread Greg KH
On Mon, Apr 18, 2016 at 08:28:58AM +1000, tcharding wrote: > drivers/staging/android/ion/ion.c checkpatch produces alignment checks. > > This patch is whitespace only and fixes these checks. > > Signed-off-by: tcharding We need a "real" name here please, read Documentation/SubmittingPatches for

[PATCH v2 1/4] drivers: staging: fix parameter alignment

2016-04-17 Thread Tobin C Harding
drivers/staging/android/ion/ion.c checkpatch produces alignment checks. This patch is whitespace only and fixes these checks. Signed-off-by: Tobin C Harding --- drivers/staging/android/ion/ion.c | 64 +++ 1 file changed, 32 insertions(+), 32 deletions(-) dif

[PATCH v2 3/4] drivers: staging: remove comparison to NULL

2016-04-17 Thread Tobin C Harding
drivers/staging/android/ion/ion.c checkpatch produces 'Comparison to NULL could be written ...' checks. This patch replaces comparison to NULL with !var as suggested by checkpatch. Signed-off-by: Tobin C Harding --- drivers/staging/android/ion/ion.c | 6 +++--- 1 file changed, 3 insertions(+),

[PATCH v2 2/4] drivers: staging: fix line length

2016-04-17 Thread Tobin C Harding
drivers/staging/android/ion/ion.c checkpatch produces line over 80 character warnings. This patch is whitespace only and fixes these warnings. Signed-off-by: Tobin C Harding --- drivers/staging/android/ion/ion.c | 6 -- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/drivers/s

[PATCH v2 0/4] drivers: staging: checkpatch fixes

2016-04-17 Thread Tobin C Harding
drivers/staging/android/ion/ion.c produces 2 warnings and 29 checks. This patch set fixes both warnings and all but 4 of the checks. All except the last patch are trivial. Signed-off-by: Tobin C Harding --- Patch 1/4 is whitespace only. This is my first Linux kernel patch. thanks Tobin C Ha

[PATCH v2 4/4] drivers: staging: remove BUG_ON

2016-04-17 Thread Tobin C Harding
drivers/staging/android/ion/ion.c calls BUG_ON in places where WARN_ON will suffice. This patch replaces two such occurences. Two other occurences remain. Signed-off-by: Tobin C Harding --- Changing the remaining two BUG_ON's causes changes to the programm logic. This is my first patch set to

Re: Drivers/hv

2016-04-17 Thread Greg KH
On Sun, Apr 17, 2016 at 10:47:54AM -0700, K. Y. Srinivasan wrote: > > Greg, > > Some time back I had sent a buch of patches for > Hyper-V drivers. Are they still in the queue or should I resend > them. They are still in the queue, give me this week to get through all of them... thanks, greg k-

RE: Drivers/hv

2016-04-17 Thread KY Srinivasan
> -Original Message- > From: Greg KH [mailto:gre...@linuxfoundation.org] > Sent: Sunday, April 17, 2016 6:10 PM > To: KY Srinivasan > Cc: linux-ker...@vger.kernel.org; de...@linuxdriverproject.org; > o...@aepfle.de; a...@canonical.com; vkuzn...@redhat.com; > jasow...@redhat.com > Subject

[PATCH net-next V2 0/2] ethernet: intel: Support Hyper-V hosts

2016-04-17 Thread K. Y. Srinivasan
Make adjustments to the Intel 10G VF driver to support running on Hyper-V hosts. K. Y. Srinivasan (2): ethernet: intel: Add the device ID's presented while running on Hyper-V intel: ixgbevf: Support Windows hosts (Hyper-V) drivers/net/ethernet/intel/ixgbevf/defines.h |5 + drive

[PATCH net-next V2 2/2] intel: ixgbevf: Support Windows hosts (Hyper-V)

2016-04-17 Thread K. Y. Srinivasan
On Hyper-V, the VF/PF communication is a via software mediated path as opposed to the hardware mailbox. Make the necessary adjustments to support Hyper-V. Signed-off-by: K. Y. Srinivasan --- V2: Addressed most of the comments from Alexander Duyck and Rustad, Mark

[PATCH net-next V2 1/2] ethernet: intel: Add the device ID's presented while running on Hyper-V

2016-04-17 Thread K. Y. Srinivasan
Intel SR-IOV cards present different ID when running on Hyper-V. Add the device IDs presented while running on Hyper-V. Signed-off-by: K. Y. Srinivasan --- V2: No change from V1. drivers/net/ethernet/intel/ixgbevf/defines.h |5 + 1 files changed, 5 insertions(+), 0 deletions(-)

[PATCH net-next V2 0/2] ethernet: intel: Support Hyper-V hosts

2016-04-17 Thread K. Y. Srinivasan
Make adjustments to the Intel 10G VF driver to support running on Hyper-V hosts. K. Y. Srinivasan (2): ethernet: intel: Add the device ID's presented while running on Hyper-V intel: ixgbevf: Support Windows hosts (Hyper-V) drivers/net/ethernet/intel/ixgbevf/defines.h |5 + drive

Administrador do sistema

2016-04-17 Thread WEBMAIL ADMIN
Sua caixa de correio excedeu o limite de armazenamento, que é de 20 GB como conjunto pelo administrador, você está atualmente em execução no 20,9 GB, você pode não ser capaz de Enviar ou receber novas mensagens até que você re-validar sua caixa de correio. Para Revalide sua caixa de correio, po