[tip: x86/mm] x86/cpu: Clean up intel_tlb_table[]

2019-09-16 Thread tip-bot2 for Sylvain 'ythier' Hitier
The following commit has been merged into the x86/mm branch of tip: Commit-ID: 77df779de742d6616d4ddd177cba152a75259104 Gitweb: https://git.kernel.org/tip/77df779de742d6616d4ddd177cba152a75259104 Author:Sylvain 'ythier' Hitier AuthorDate:Sun, 15 Sep 2019 11:09

[PATCH] x86: intel_tlb_table: small cleanups

2019-09-15 Thread Sylvain 'ythier' Hitier
s could be made more regular, but it's unused by the code and will be read only by developers, so don't bother.) Signed-off-by: Sylvain 'ythier' Hitier --- arch/x86/kernel/cpu/intel.c |8 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/arch/x86/kernel/c

[PATCH v2 RE-SEND] moduleparam: fix doc: hwparam_irq configures an IRQ

2017-07-02 Thread Sylvain 'ythier' Hitier
v2: Add Cc in commit message Signed-off-by: Sylvain 'ythier' Hitier Cc: triv...@kernel.org --- Hi Linus! After 5 weeks with no answers, would you include this patch? v1: https://lkml.org/lkml/2017/5/27/206 v2: https://lkml.org/lkml/2017/6/29/1035 include/linux/modulepara

[PATCH v2] moduleparam: fix doc: hwparam_irq configures an IRQ

2017-06-29 Thread Sylvain 'ythier' Hitier
v2: Add Cc in commit message Signed-off-by: Sylvain 'ythier' Hitier Cc: triv...@kernel.org --- include/linux/moduleparam.h |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/linux/moduleparam.h b/include/linux/moduleparam.h index 6be1949..1ee7b30 100644 ---

[PATCH] moduleparam: fix doc: hwparam_irq configures an IRQ

2017-05-27 Thread Sylvain 'ythier' Hitier
Signed-off-by: Sylvain 'ythier' Hitier --- include/linux/moduleparam.h |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/linux/moduleparam.h b/include/linux/moduleparam.h index 6be1949..1ee7b30 100644 --- a/include/linux/moduleparam.h +++ b/inc

Re: [PATCH v3] 3c59x: fix bad split of cpu_to_le32(pci_map_single())

2014-10-07 Thread Sylvain 'ythier' Hitier
TP error. Regards, Sylvain "ythier" Hitier -- Business is about being busy, not being rich... Lived 777 days in a Debian package => http://en.wikipedia.org/wiki/Apt,_Vaucluse There's THE room for ideals in this mechanical place! -- To unsubscribe from this list: send the line &qu

[PATCH RESEND v3] 3c59x: fix bad split of cpu_to_le32(pci_map_single())

2014-10-07 Thread Sylvain 'ythier' Hitier
From: Sylvain "ythier" Hitier In commit 6f2b6a3005b2c34c39f207a87667564f64f2f91a, # 3c59x: Add dma error checking and recovery the intent is to split out the mapping from the byte-swapping in order to insert a dma_mapping_error() check. Kinda this semantic patch: /

Re: [PATCH v2] 3c59x: fix bad split of cpu_to_le32(pci_map_single())

2014-09-29 Thread Sylvain 'ythier' Hitier
When: 2014-09-29_1@16-08-13 -0400 Who: David Miller What: > From: Sylvain 'ythier' Hitier > Date: Mon, 29 Sep 2014 19:45:12 + > > You should not submit patches as a reply to a discussion, it must be > done as a fresh mailing list posting. Ah, didn't know.

[PATCH v3] 3c59x: fix bad split of cpu_to_le32(pci_map_single())

2014-09-29 Thread Sylvain 'ythier' Hitier
Neil Horman Signed-off-by: Sylvain "ythier" Hitier --- drivers/net/ethernet/3com/3c59x.c |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/net/ethernet/3com/3c59x.c b/drivers/net/ethernet/3com/3c59x.c index 8ca49f04..0a3108b3 100644 --- a/drivers/net/ethern

Re: [PATCH v2] 3c59x: fix bad split of cpu_to_le32(pci_map_single())

2014-09-29 Thread Sylvain 'ythier' Hitier
ck? Or are you expecting a unique patch combining Neil's changes and mine? Regards, Sylvain "ythier" Hitier -- Business is about being busy, not being rich... Lived 777 days in a Debian package => http://en.wikipedia.org/wiki/Apt,_Vaucluse There's THE room for ideals in

[PATCH] fork.c: copy_process(): fix cleanup WRT perf_event_free_task()

2014-09-26 Thread Sylvain 'ythier' Hitier
f if (clone_flags & CLONE_THREAD) threadgroup_change_end(current); //SNIP// } Signed-off-by: Sylvain "ythier" Hitier --- kernel/fork.c |5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/kernel/fork.c b/kernel/fork.c index 0cf9cdb..a91e47d 100644

[PATCH v2] 3c59x: fix bad split of cpu_to_le32(pci_map_single())

2014-09-25 Thread Sylvain 'ythier' Hitier
+ /* snip */; + cpu_to_le32(addr) Let's remove the leftover cpu_to_le32() for coherency. v2: Better changelog. Fixes: 6f2b6a3005b2c34c39f207a87667564f64f2f91a # 3c59x: Add dma error checking and recovery Cc: "David S. Miller" Cc: Meelis Roos Cc: Neil Horman Sig

[PATCH] 3c59x: fix bad split of cpu_to_le32(pci_map_single())

2014-09-24 Thread Sylvain 'ythier' Hitier
Author: Sylvain "ythier" Hitier Date: Wed Sep 24 09:22:16 2014 + 3c59x: fix bad split of cpu_to_le32(pci_map_single()) Change the #else branch like the #if DO_ZEROCOPY branch was changed. Fixes: 6f2b6a3005b2c34c39f207a87667564f64f2f91a

[PATCH] Ensure prepare_update_cmtime() returns an initialized value (was: Re: [PATCH v4 2/7] fs: Add inode_update_time_writable)

2013-09-04 Thread Sylvain 'ythier' Hitier
nt prepare_update_cmtime(struct inode *inode, struct timespec *now) if (IS_I_VERSION(inode)) sync_it |= S_VERSION; - if (!sync_it) - return 0; - return sync_it; } Regards, Sylvain "ythier" Hitier -- Business is about being bus