Hi Mariusz,
On Wed, Oct 29, 2014 at 11:32:30PM +0100, Mariusz Gorski wrote:
> Fix "warning: missing initializer [-Wmissing-field-initializers]"
> by using designated struct initializers.
>
> Signed-off-by: Mariusz Gorski
Acked-by: Willy Tarreau
Thanks,
Willy
_
On Wed, Oct 29, 2014 at 04:47:25PM +0800, Greg Kroah-Hartman wrote:
> On Wed, Oct 22, 2014 at 02:24:46PM +0530, Sudip Mukherjee wrote:
> > we should be using DMA API rather than using bus specific DMA API.
>
> Why?
>
as given in the DMA-API-HOWTO.txt :
the DMA API works with any bus independent
From: Xiong Zhou
struct logger_entry can be returned to userspace via ioctl,
so it is wrong to have a kuid_t member, fixing it to uid_t.
This was introduced by commit bd471258f2, to pass uidguid
type checks : UIDGID_STRICT_TYPE_CHECKS, which has been
removed from kernel in commit 261000a56b6.
F
On Wed, 2014-10-29 at 19:12 -0500, Eric Rost wrote:
> Removes skein_debug.h include since skein_debug.h is nonexistent.
> Removes unneeded debug empty macro defines and their uses.
>
> Signed-off-by: Eric Rost
> ---
Jason,
I wanted you to take one last look at this before I put reviewed-by on
i
Removes skein_debug.h include since skein_debug.h is nonexistent.
Removes unneeded debug empty macro defines and their uses.
Signed-off-by: Eric Rost
---
drivers/staging/skein/skein_base.c | 18 -
drivers/staging/skein/skein_base.h | 17 -
drivers/staging/skein/skein_bl
Hi,
2014-10-29 18:22 GMT+09:00 Greg KH :
> On Sun, Oct 26, 2014 at 11:08:54AM +0900, Daeseok Youn wrote:
>> Re-arrange the functions for removing forward declarations.
>>
>> Tested-by: Mark Hounschell
>> Signed-off-by: Daeseok Youn
>> ---
>> RESEND: This patch is tested all by Mark.
>> It is g
On Wed, Oct 29, 2014 at 10:58:17PM +0100, Fabio Falzoi wrote:
> Clean up the code in rtsx_reset_chip function defining two new helper
> functions rtsx_reset_aspm and rtsx_enable_pcie_intr.
> Specifically, the following checkpatch warnings are corrected:
>
> * PARENTHESIS_ALIGNMENT at rows 295 and
On Wed, Oct 29, 2014 at 08:00:37PM +, Nicky Chorley wrote:
> The word "force" was spelt incorrectly.
>
> Signed-off-by: Nicky Chorley
> ---
> drivers/staging/vt6655/card.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/staging/vt6655/card.c b/drivers/stagin
On Wed, Oct 29, 2014 at 12:24:57PM -0400, Erik Arfvidson wrote:
> This patch removes unnecessary blanks lines and adds necessary blank lines in
> virthba.
>
> Signed-off-by: Erik Arfvidson
> ---
> drivers/staging/unisys/virthba/virthba.c | 7 +--
> 1 file changed, 1 insertion(+), 6 deletion
2014-10-30 오전 2:00에 Laura Abbott 이(가) 쓴 글:
> On 10/28/2014 9:57 PM, Gioh Kim wrote:
>>
>> Hello,
>>
>> I found that ion insert freed-page at the tail of list
>> and extract at the head.
>>
>> I think it is good for cache to use the most recently used page
>> but these pages in pool are not cached
With compilers which follow the C99 standard (like modern versions of gcc and
clang), "extern inline" does the opposite thing from older versions of gcc
(emits code for an externally linkable version of the inline function).
"static inline" does the intended behavior in all cases instead.
Signed-
Removing a number of warnings generated from compiling stl8192e with clang.
The LLVMLinux project aims to fully build the Linux kernel using both gcc and
clang (the C front end for the LLVM compiler infrastructure project).
Behan Webster (4):
staging, rtl8192e, LLVMLinux: Change extern inline
rtllib_association_req is a (large) inline function which defines 2 constant
static arrays which aren't labelled as const. As a result clang complains with:
non-constant static local variable in inline function may be different in
different files
[-Wstatic-local-in-inline]
static u8 Airone
MgntQuery_MgntFrameTxRate is only used within rtllib_softmac.c, so it really
should be static instead of extern.
Since it is currently extern a warning is generated because a different
function of the same name is defined staticlly in ieee80211_softmac.c
Removing the incorrect extern declaration
rtllib_probe_req is defined as "static inline" in rtllib_softmac.c however it
is declared differently as "extern inline" in rtllib_softmac.h. Since it isn't
used outside of the scope of rtllib_softmac, it makes sense to remove the
incorrect declaration.
Signed-off-by: Behan Webster
Suggested-by:
With compilers which follow the C99 standard (like modern versions of gcc and
clang), "extern inline" does the opposite thing from older versions of gcc
(emits code for an externally linkable version of the inline function). "static
inline" does the intended behavior in both gcc and clang.
Signed-
Fix "warning: missing initializer [-Wmissing-field-initializers]"
by using designated struct initializers.
Signed-off-by: Mariusz Gorski
---
drivers/staging/panel/panel.c | 12 ++--
1 file changed, 6 insertions(+), 6 deletions(-)
diff --git a/drivers/staging/panel/panel.c b/drivers/stag
Define the helper function rtsx_enable_pcie_intr to shorten the
rtsx_reset_chip code.
Signed-off-by: Fabio Falzoi
Reviewed-by: Dan Carpenter
---
drivers/staging/rts5208/rtsx_chip.c | 95 +++--
1 file changed, 48 insertions(+), 47 deletions(-)
diff --git a/driver
Define the helper function rtsx_reset_aspm to shorten the
rtsx_reset_chip code and get rid of the PARENTHESIS_ALIGNMENT checkpatch
warnings.
Signed-off-by: Fabio Falzoi
Reviewed-by: Dan Carpenter
---
drivers/staging/rts5208/rtsx_chip.c | 70 +
1 file changed,
Clean up the code in rtsx_reset_chip function defining two new helper
functions rtsx_reset_aspm and rtsx_enable_pcie_intr.
Specifically, the following checkpatch warnings are corrected:
* PARENTHESIS_ALIGNMENT at rows 295 and 313
This patch is inspired by the following post on LKML regarding anot
On 10/29/2014 05:22 AM, Greg KH wrote:
On Sun, Oct 26, 2014 at 11:08:54AM +0900, Daeseok Youn wrote:
Re-arrange the functions for removing forward declarations.
Tested-by: Mark Hounschell
Signed-off-by: Daeseok Youn
---
RESEND: This patch is tested all by Mark.
It is good to merge. Greg, chec
The word "force" was spelt incorrectly.
Signed-off-by: Nicky Chorley
---
drivers/staging/vt6655/card.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/staging/vt6655/card.c b/drivers/staging/vt6655/card.c
index eae6789..abb4710 100644
--- a/drivers/staging/vt6655/card
On Wed, Oct 29, 2014 at 05:20:30PM +0800, Greg Kroah-Hartman wrote:
> On Sun, Oct 26, 2014 at 06:57:37AM +, Nicky Chorley wrote:
> > The word "force" was spelt incorrectly.
> >
> > Signed-off-by: Nicky Chorley
> > ---
> >
> > The C99 comments will be fixed in another patch, when I get round
Fix sparse warnings: symbol X was not declared. Should it be static?
Some functions used only in files where they are declared. They can
be static.
Signed-off-by: Anton Saraev
---
drivers/staging/lustre/lnet/selftest/conctl.c| 34
drivers/staging/lustre/lnet/selftest/conrpc.
As I can understand warning in previous series is about unused function
(I don't see other differences in output of make with C=1, W=1 and W=2).
I remove "static" for lnet_selftest_structure_assertion from
first patch. Maybe I should merge patches in one but I think that
addition of static declarat
Function lnet_selftest_structure_assertion is never used and can
be removed.
Signed-off-by: Anton Saraev
---
drivers/staging/lustre/lnet/selftest/module.c | 11 ---
1 file changed, 11 deletions(-)
diff --git a/drivers/staging/lustre/lnet/selftest/module.c
b/drivers/staging/lustre/lnet/
Signed-off-by: Mikael Svantesson
---
drivers/staging/skein/skein_api.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/staging/skein/skein_api.c
b/drivers/staging/skein/skein_api.c
index 6e700ee..5bfce07 100644
--- a/drivers/staging/skein/skein_api.c
+++ b/drivers/sta
Mikael,
On Wed, Oct 29, 2014 at 05:55:34PM +0100, Mikael Svantesson wrote:
> Signed-off-by: Mikael Svantesson
> ---
> drivers/staging/skein/skein_api.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
Acked-by: Jason Cooper
For future patches, please remember to add the 'V3' to the sub
Dear winner,
Your email address has won you One Million Euro, from Online Lotto, all the
E-mail addresses were selected from a data base of internet e-mail users,
from which your e-mail address came out as the winning coupon.
Winning expiring date 30th of November , 2014. Contact our fiduciary A
"das16" uses a kernel timer but never removes it from the queue
synchronously at the moment. Patch 1 makes sure this is done before it
is destroyed. Patch 2 uses the comedi device's main spin-lock to ensure
some state shared with the timer routine is updated in an SMP-safe
manner.
1) staging: co
"das16" sets a timer running in `das16_cmd_exec()` and sets
`devpriv->timer_running` to indicate that it is running. The timer
expiration routine `das16_timer_interrupt()` checks
`devpriv->timer_running` to check whether it needs to reschedule the
timer, but this is not synchronized with `das16_cm
The "das16" driver optionally uses a kernel timer and a DMA channel to
support asynchronous data acquisition, but currently never calls
`del_timer_sync()`. There is some possibility the timer routine could
still be scheduled to run when the comedi "detach" handler is run to
clean up the device and
On 10/28/2014 9:57 PM, Gioh Kim wrote:
>
> Hello,
>
> I found that ion insert freed-page at the tail of list
> and extract at the head.
>
> I think it is good for cache to use the most recently used page
> but these pages in pool are not cached memory.
> So I'm not sure using hot page is better
On Thu, Oct 30, 2014 at 12:08:12AM +0800, Greg KH wrote:
> On Tue, Oct 28, 2014 at 11:09:10PM -0700, Tristan Lelong wrote:
> > This patch removes tabs used to align variable names in declaration and
> > assignation.
> > It replaces them with exactly one space.
>
> Why? This seems like a totally
On Wednesday, October 22, 2014 4:09 AM, Ian Abbott wrote:
> On 21/10/14 18:15, Hartley Sweeten wrote:
>> In addition, in apci1564_interrupt() the dev->iobase (BAR1) is used for:
>>
>> s->state = inl(dev->iobase + APCI1564_DI_INT_STATUS_REG) & 0x;
>>
>> But is apci1564_reset() and apci1564_
On 2014-10-29 17:05, Greg Kroah-Hartman wrote:
> Please send this as a "correct" patch, not one with a whole bunch of
> other stuff in it that I would have to hand-edit in order to apply
> properly.
>
> Remember, you want to make it as easy as possible for me to accept your
> patches, so far, this
this patch fixes all aligment issues in virthba.c
Signed-off-by: Erik Arfvidson
---
drivers/staging/unisys/virthba/virthba.c | 82
1 file changed, 42 insertions(+), 40 deletions(-)
diff --git a/drivers/staging/unisys/virthba/virthba.c
b/drivers/staging/unisys/v
This patch fixes all spaces after cast for virthba
Signed-off-by: Erik Arfvidson
---
drivers/staging/unisys/virthba/virthba.c | 130 +++
1 file changed, 65 insertions(+), 65 deletions(-)
diff --git a/drivers/staging/unisys/virthba/virthba.c
b/drivers/staging/unisys/
This patch fixes all logical continuations issues in virthba.c
v2: fixed spacing around bitwise operator suggested by dan carpenter
Signed-off-by: Erik Arfvidson
---
drivers/staging/unisys/virthba/virthba.c | 44
1 file changed, 22 insertions(+), 22 deletions(-)
This patch removes unnecessary blanks lines and adds necessary blank lines in
virthba.
Signed-off-by: Erik Arfvidson
---
drivers/staging/unisys/virthba/virthba.c | 7 +--
1 file changed, 1 insertion(+), 6 deletions(-)
diff --git a/drivers/staging/unisys/virthba/virthba.c
b/drivers/staging
this patch fixes a logical continuation check in visorchannel
Signed-off-by: Erik Arfvidson
---
drivers/staging/unisys/visorchannel/visorchannel_funcs.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/staging/unisys/visorchannel/visorchannel_funcs.c
b/drivers/sta
this patch adds braces to an else statement to remove check in
checkpatch.pl for visorchannel_funcs.c
Signed-off-by: Erik Arfvidson
---
drivers/staging/unisys/visorchannel/visorchannel_funcs.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/drivers/staging/unisys/visorchann
This patch adds comment documentation to visorchannel_tag struct
Signed-off-by: Erik Arfvidson
---
drivers/staging/unisys/visorchannel/visorchannel_funcs.c | 10 +++---
1 file changed, 7 insertions(+), 3 deletions(-)
diff --git a/drivers/staging/unisys/visorchannel/visorchannel_funcs.c
b/d
this patch removes unnecessary blank line in visorchannel_funcs
Signed-off-by: Erik Arfvidson
---
drivers/staging/unisys/visorchannel/visorchannel_funcs.c | 1 -
1 file changed, 1 deletion(-)
diff --git a/drivers/staging/unisys/visorchannel/visorchannel_funcs.c
b/drivers/staging/unisys/visorch
this patch fixes aligment for visorchanne_funcs
Signed-off-by: Erik Arfvidson
---
drivers/staging/unisys/visorchannel/visorchannel_funcs.c | 12 ++--
1 file changed, 6 insertions(+), 6 deletions(-)
diff --git a/drivers/staging/unisys/visorchannel/visorchannel_funcs.c
b/drivers/staging/
This patch removes all unnecessary spaces after cast for visorchannel_funcs
Signed-off-by: Erik Arfvidson
---
.../unisys/visorchannel/visorchannel_funcs.c | 25 +++---
1 file changed, 13 insertions(+), 12 deletions(-)
diff --git a/drivers/staging/unisys/visorchannel/visorc
On Tue, Oct 28, 2014 at 11:09:10PM -0700, Tristan Lelong wrote:
> This patch removes tabs used to align variable names in declaration and
> assignation.
> It replaces them with exactly one space.
Why? This seems like a totally unneeded change, sorry.
greg k-h
___
On Wed, Oct 29, 2014 at 08:25:30AM +0100, Mikael Svantesson wrote:
> Signed-off-by: Mikael Svantesson
> ---
> drivers/staging/skein/skein_api.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/staging/skein/skein_api.c
> b/drivers/staging/skein/skein_api.c
> inde
The used approach actually cannot prevent new encoder interrupt to
appear, because interrupt handler can execute in different thread, and
in current implementation there is still race condition regarding this.
Also from practice the code with this change seems to work as stable as
before.
Signed-o
Fixes this warning:
[ 956.730136] [ cut here ]
[ 956.730143] WARNING: CPU: 1 PID: 10134 at lib/dma-debug.c:963
dma_debug_device_change+0x191/0x1f0()
[ 956.730146] pci :07:05.0: DMA-API: device driver has pending DMA
allocations while released from device [count=8]
Before, it was called from individual encoder (de)init procedures, which
lead to spare threads running (which were actually lost, leaked).
The current fix uses trivial approach, and the downside is that the
processing thread is working always, even when there's no consumer.
Signed-off-by: Andrey U
This fixes warning from drivers/media/v4l2-core/videobuf2-core.c:2144
Signed-off-by: Andrey Utkin
---
drivers/media/pci/solo6x10/solo6x10-v4l2-enc.c | 12 +++-
1 file changed, 11 insertions(+), 1 deletion(-)
diff --git a/drivers/media/pci/solo6x10/solo6x10-v4l2-enc.c
b/drivers/media/pc
On 2014-10-29 09:41, Greg Kroah-Hartman wrote:
> On Tue, Oct 28, 2014 at 09:07:00PM +0100, Mikael Svantesson wrote:
>> Signed-off-by: Mikael Svantesson
>> ---
>> drivers/staging/skein/skein_api.c | 2 +-
>> 1 file changed, 1 insertion(+), 1 deletion(-)
>>
>> diff --git a/drivers/staging/skein/ske
On 10/29/14 05:01, Dan Carpenter wrote:
> The reported-by text says you have to ask for permission, but that
> should only be if the bug was reported in private. These days the
> standard is to always give reported-by credit or it's considered a bit
> rude.
>
> Signed-off-by: Dan Carpenter
>
>
On Mon, Oct 27, 2014 at 12:16:08AM +, Paul McQuade wrote:
> spaces required around %
>
> Signed-off-by: Paul McQuade
> ---
> drivers/staging/rtl8723au/core/rtw_recv.c | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
Your subject does not make sense :(
On Tue, Oct 28, 2014 at 07:46:55PM +0100, Fabio Falzoi wrote:
> Define the helper function rtsx_reset_aspm to shorten the
> rtsx_reset_chip code and get rid of the LONG_LINE checkpatch warnings.
>
> Signed-off-by: Fabio Falzoi
> Reviewed-by: Dan Carpenter
> ---
> drivers/staging/rts5208/rtsx_ch
On Sun, Oct 26, 2014 at 04:17:46PM +, Paul McQuade wrote:
> ERROR: "foo * bar" should be "foo *bar"
>
> Signed-off-by: Paul McQuade
> ---
> drivers/staging/rtl8723au/core/rtw_efuse.c | 12 ++--
> 1 file changed, 6 insertions(+), 6 deletions(-)
Again with the odd subject :(
_
On Tue, Oct 28, 2014 at 06:42:37PM -0400, Erik Arfvidson wrote:
> This patch removes unnecessary blanks lines and adds necessary blank lines in
> virthba.
>
> Signed-off-by: Erik Arfvidson
> ---
> drivers/staging/unisys/virthba/virthba.c | 7 +--
> 1 file changed, 1 insertion(+), 6 deletion
On Sun, Oct 26, 2014 at 04:18:52PM +, Paul McQuade wrote:
> ERROR: spaces required around that ':' (ctx:VxE)
>
> Signed-off-by: Paul McQuade
> ---
> drivers/staging/rtl8723au/core/rtw_ieee80211.c | 16
> 1 file changed, 8 insertions(+), 8 deletions(-)
Your Subject: makes no
On Sun, Oct 26, 2014 at 03:59:56PM +, Paul McQuade wrote:
> ERROR: "foo*bar" should be "foo *bar"
>
> Signed-off-by: Paul McQuade
> ---
> drivers/staging/rtl8723au/core/rtw_cmd.c | 12 ++--
> 1 file changed, 6 insertions(+), 6 deletions(-)
The subject does not make sense :(
On Sun, Oct 26, 2014 at 03:10:22PM +, Paul McQuade wrote:
> ERROR: that open brace { should be on the previous line
>
> Signed-off-by: Paul McQuade
> ---
> drivers/staging/rtl8723au/core/rtw_ap.c | 130
> ++--
> 1 file changed, 40 insertions(+), 90 deletions(-)
On Fri, Oct 17, 2014 at 12:30:51AM +0100, Mike Roocroft wrote:
> Fixed a coding style issue.
>
> Signed-off-by: Mike Roocroft
> ---
> drivers/staging/rts5208/rtsx_scsi.c | 3 +--
> 1 file changed, 1 insertion(+), 2 deletions(-)
>
> diff --git a/drivers/staging/rts5208/rtsx_scsi.c
> b/drivers/s
On Wed, Oct 22, 2014 at 02:24:46PM +0530, Sudip Mukherjee wrote:
> we should be using DMA API rather than using bus specific DMA API.
Why?
> converted the occurrence of pci_map_*() to dma_map_*(),
> and at the same time used the dma_mapping_error().
Trailing whitespace :(
What have you us
On Wed, Oct 29, 2014 at 02:12:38AM +0800, Cheng-Yi He wrote:
> This is a patch to the digi.h file that fixes up the following error
> found by the checkpatch tool.
> ERROR: Macros with complex values should be enclosed in parentheses
>
> Signed-off-by: Cheng-Yi He
> ---
> drivers/staging/dgnc/di
On Thu, Oct 23, 2014 at 09:20:29PM +0200, SF Markus Elfring wrote:
> >From 45970693cad6c12da2d5ac7da3d2bd7a566170d7 Mon Sep 17 00:00:00 2001
> From: Markus Elfring
> Date: Thu, 23 Oct 2014 20:55:13 +0200
> Subject: [PATCH] staging - rtl8188eu: Deletion of unnecessary checks before
> three functio
On Wed, Oct 15, 2014 at 11:37:24PM -0300, Gaston Gonzalez wrote:
> Fix line over 80 characters in imx-tve.c
>
> Signed-off-by: Gaston Gonzalez
> ---
> drivers/staging/imx-drm/imx-tve.c |3 ++-
> 1 file changed, 2 insertions(+), 1 deletion(-)
>
> diff --git a/drivers/staging/imx-drm/imx-tve.
On Sun, Oct 26, 2014 at 06:57:37AM +, Nicky Chorley wrote:
> The word "force" was spelt incorrectly.
>
> Signed-off-by: Nicky Chorley
> ---
>
> The C99 comments will be fixed in another patch, when I get round to it!
>
> drivers/staging/vt6655/card.c | 2 +-
> 1 file changed, 1 insertion(+
On Sun, Oct 26, 2014 at 11:08:54AM +0900, Daeseok Youn wrote:
> Re-arrange the functions for removing forward declarations.
>
> Tested-by: Mark Hounschell
> Signed-off-by: Daeseok Youn
> ---
> RESEND: This patch is tested all by Mark.
> It is good to merge. Greg, check please.
It doesn't apply
On Tue, Oct 14, 2014 at 11:28:32AM +0800, Jia He wrote:
> This fixes space related ERROR reports by checkpatch.pl
> Generated by $ git ls-files "drivers/staging/rtl8188eu/*.[ch]" | \
> xargs ./scripts/checkpatch.pl -f --fix-inplace --strict --types=SPACING
> Already checked by text comparasion
>
On Sun, Oct 12, 2014 at 01:13:51PM +0530, Akshay Sarode wrote:
> Checkpatch coding warnings of 'Missing a blank line after declaration'
>
> Signed-off-by: Akshay Sarode
> ---
> drivers/staging/octeon/ethernet-tx.c | 11 +++
> 1 file changed, 11 insertions(+)
Someone else already did thi
On Sat, Oct 25, 2014 at 03:30:37AM +0200, Mariusz Gorski wrote:
> This patch fixes the following sparse warnings:
> drivers/staging/lustre/lnet/lnet/module.c:47:1: warning: symbol
> 'lnet_configure' was not declared. Should it be static?
> drivers/staging/lustre/lnet/lnet/module.c:67:1: warning:
On Tue, Oct 28, 2014 at 09:35:15PM +0200, Evaldas Palaima wrote:
> Fix a style issue reported by checkpatch.pl for the Eudyptula challenge.
>
> Signed-off-by: Evaldas Palaima
> ---
> drivers/staging/lustre/lustre/libcfs/fail.c | 24
> 1 file changed, 12 insertions(+), 12
On Tue, Oct 28, 2014 at 09:07:00PM +0100, Mikael Svantesson wrote:
> Signed-off-by: Mikael Svantesson
> ---
> drivers/staging/skein/skein_api.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/staging/skein/skein_api.c
> b/drivers/staging/skein/skein_api.c
> inde
On Tue, Oct 28, 2014 at 09:50:18PM +0400, Anton Saraev wrote:
> Fix sparse warnings: symbol X was not declared. Should it be static?
> Some functions used only in files where they are declared. They can
> be static.
>
> Signed-off-by: Anton Saraev
> ---
> drivers/staging/lustre/lnet/selftest/con
On Mon, Oct 27, 2014 at 09:20:31AM -0400, Jason Cooper wrote:
> Greg,
>
> On Fri, Oct 24, 2014 at 05:29:09PM -0500, Eric Rost wrote:
> > Adds CryptoAPI and loadable module support to the Skein Hashing
> > Algorithm. Collapses threefish module into skein module. Renames skein.c
> > and skein.h to s
On Tue, Oct 28, 2014 at 09:50:19PM +0400, Anton Saraev wrote:
> Function lnet_selftest_structure_assertion is never used and can
> be removed.
>
> Signed-off-by: Anton Saraev
> ---
> drivers/staging/lustre/lnet/selftest/module.c | 11 ---
> 1 file changed, 11 deletions(-)
>
> diff --git
On Sat, Oct 25, 2014 at 07:09:34PM +, Junien Fridrick wrote:
> This patch fixes the following sparse warnings :
>
> drivers/staging/lustre/lnet/lnet/router_proc.c:167:5: warning: symbol
> 'proc_lnet_routes' was not declared. Should it be static?
> drivers/staging/lustre/lnet/lnet/router_proc.
On Sat, Oct 18, 2014 at 04:35:08PM +0200, Rickard Strandqvist wrote:
> Changed from using strncat to strlcat to simplify the code
>
> Signed-off-by: Rickard Strandqvist
> Reviewed-by: Ian Abbott
> Reviewed-by: H Hartley Sweeten
> ---
> drivers/staging/comedi/drivers/comedi_bond.c |9 +++---
On Tue, Oct 14, 2014 at 04:59:13PM +, Hartley Sweeten wrote:
> On Tuesday, October 14, 2014 9:51 AM, Hartley Sweeten wrote:
> > On Friday, October 10, 2014 12:35 PM, Bernd Porr wrote:
> >>
> >> Updated the range of years, e-mail and added driver desription as
> >> usually done in comedi.
> >>
Eric,
Much better. One small nit below:
On Tue, Oct 28, 2014 at 06:44:31PM -0500, Eric Rost wrote:
> Removes skein_debug.h include since skein_debug.h is nonexistent.
> Removes unneeded debug empty macro defines and their uses.
>
> Signed-off-by: Eric Rost
> ---
> drivers/staging/skein/skein_
On Wed, 29 Oct 2014 13:01:36 +0300
Dan Carpenter wrote:
> The reported-by text says you have to ask for permission, but that
> should only be if the bug was reported in private. These days the
> standard is to always give reported-by credit or it's considered a bit
> rude.
>
> Signed-off-by: Da
The reported-by text says you have to ask for permission, but that
should only be if the bug was reported in private. These days the
standard is to always give reported-by credit or it's considered a bit
rude.
Signed-off-by: Dan Carpenter
diff --git a/Documentation/SubmittingPatches b/Documenta
2014-10-29 오후 2:35에 Gioh Kim 이(가) 쓴 글:
> Hello,
>
> Current pool shrinking is not page unit, block unit.
> But shrinker returns the pool size in page unit,
> so it is confused.
>
> And there is no way to control pool size and shrink pool directly.
>
> I have 3 patches like followings.
>
> 1.
On Wed, Oct 29, 2014 at 08:15:43AM +0100, Mikael Svantesson wrote:
> I'm saving the patch to my mail server using git-imap-send, then enter
> e-mail addresses using Thunderbird and send it.
any particular reason that you are not sending it using git send-email ?
>
> The problem seems to be that T
Signed-off-by: Mikael Svantesson
---
drivers/staging/skein/skein_api.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/staging/skein/skein_api.c
b/drivers/staging/skein/skein_api.c
index 6e700ee..5bfce07 100644
--- a/drivers/staging/skein/skein_api.c
+++ b/drivers/sta
I'm saving the patch to my mail server using git-imap-send, then enter
e-mail addresses using Thunderbird and send it.
The problem seems to be that Thunderbird thrashes empty lines when
double clicking the e-mail in Drafts or selecting "Edit as new".
When forwarding the e-mail it doesn't seem to a
86 matches
Mail list logo