[PATCH 1/3] leaking_addresses: Fix calls to dprint

2019-02-07 Thread Tobin C. Harding
Currently calls to function dprint() are non uniform and at times incorrect. Use uniform _correct_ call to function dprint(). Signed-off-by: Tobin C. Harding --- scripts/leaking_addresses.pl | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/leaking_addresses.pl

[PATCH 0/3] Minor bug fixes to leaking_addresses.pl

2019-02-07 Thread Tobin C. Harding
Hi, Here are a few minor fixes/improvements to scripts/leaking_addresses.pl Patch 1: Fixes places where I don't know how to Perl. Patch 2: Removes `--version` command line option, completely this time. Patch 3: Fix a bug in the command line options parsing. thanks, Tobin. Tobin C. Harding

[PATCH 2/3] leaking_addresses: Completely remove --version flag

2019-02-07 Thread Tobin C. Harding
Recently attempt to remove the '--version' flag was made, badly. I failed to remove mention of it from the help output. And also I failed to actually remove the flag from the options list. _Completely_ remove --version flag. Signed-off-by: Tobin C. Harding --- scripts/leaking_addresses.pl

[PATCH 1/1] docs: powerpc: Convert to RST format

2019-02-06 Thread Tobin C. Harding
les (obviously) and formatted as HTML to verify rendering, no other formats verified. Convert docs to RST format, adding license. Signed-off-by: Tobin C. Harding --- Documentation/index.rst | 1 + Documentation/powerpc/DAWR-POWER9.rst | 60 Documentation/powe

[PATCH 0/1] Start conversion of PowerPC docs

2019-02-06 Thread Tobin C. Harding
owards not making changes so that we don't introduce errors). Edited as text files (obviously) and formatted as HTML to verify rendering, no other formats verified. thanks, Tobin. Tobin C. Harding (1): docs: powerpc: Convert docs to RST format. Documentation/index.rst

Re: [PATCH v2 0/3] slub: Do trivial comments fixes

2019-02-04 Thread Tobin C. Harding
On Mon, Feb 04, 2019 at 03:04:10PM -0800, Andrew Morton wrote: > On Mon, 4 Feb 2019 11:57:10 +1100 "Tobin C. Harding" > wrote: > > > Here is v2 of the comments fixes [to single SLUB header file] > > Thanks. I think I'll put these into a single patch. Awesome, thank you.

Re: [PATCH] mm/slab: Increase width of first /proc/slabinfo column

2019-02-03 Thread Tobin C. Harding
On Fri, Feb 01, 2019 at 02:03:46PM -0800, Andrew Morton wrote: > On Thu, 31 Jan 2019 18:43:10 -0800 Matthew Wilcox wrote: > > > On Fri, Feb 01, 2019 at 11:42:42AM +1100, Tobin C. Harding wrote: > > > Currently when displaying /proc/slabinfo if any cache names are too long

Re: [PATCH] mm/slab: Increase width of first /proc/slabinfo column

2019-02-03 Thread Tobin C. Harding
On Thu, Jan 31, 2019 at 06:43:10PM -0800, Matthew Wilcox wrote: > On Fri, Feb 01, 2019 at 11:42:42AM +1100, Tobin C. Harding wrote: > > Currently when displaying /proc/slabinfo if any cache names are too long > > then the output columns are not aligned. We could do something f

[PATCH v2 3/3] slub: Correct grammar/punctuation in comments

2019-02-03 Thread Tobin C. Harding
Currently there are a few minor grammatical errors in the comments. While we are at it we can fix punctuation to be correct and uniform also. Correct grammar/punctuation in comments. Signed-off-by: Tobin C. Harding --- include/linux/slub_def.h | 8 1 file changed, 4 insertions(+), 4

[PATCH v2 1/3] slub: Capitialize comment string

2019-02-03 Thread Tobin C. Harding
SLUB include file has particularly clean comments, one comment string is holding us back. Capitialize comment string. Signed-off-by: Tobin C. Harding --- include/linux/slub_def.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/linux/slub_def.h b/include/linux

[PATCH v2 2/3] slub: Use C89 comment style

2019-02-03 Thread Tobin C. Harding
SLUB include file uses a c99 comment style. In line with the rest of the kernel lets use c89 comment style. Use C89 comment style. Signed-off-by: Tobin C. Harding --- include/linux/slub_def.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/linux/slub_def.h b

[PATCH v2 0/3] slub: Do trivial comments fixes

2019-02-03 Thread Tobin C. Harding
are going in through his tree. Tobin C. Harding (3): slub: Capitialize comment string slub: Use C89 comment style slub: Correct grammar/punctuation in comments include/linux/slub_def.h | 12 ++-- 1 file changed, 6 insertions(+), 6 deletions(-) -- 2.20.1

Re: [PATCH] mm/slab: Increase width of first /proc/slabinfo column

2019-02-03 Thread Tobin C. Harding
On Fri, Feb 01, 2019 at 07:27:24PM -0800, Joe Perches wrote: > On Fri, 2019-02-01 at 11:42 +1100, Tobin C. Harding wrote: > > Increase the width of the first column (cache name) in the output of > > /proc/slabinfo from 17 to 30 characters. > > Do you care if this breaks

Re: [PATCH] mm/slab: Increase width of first /proc/slabinfo column

2019-01-31 Thread Tobin C. Harding
On Thu, Jan 31, 2019 at 06:43:10PM -0800, Matthew Wilcox wrote: > On Fri, Feb 01, 2019 at 11:42:42AM +1100, Tobin C. Harding wrote: > > Currently when displaying /proc/slabinfo if any cache names are too long > > then the output columns are not aligned. We could do something f

Re: [PATCH] mm/slab: Increase width of first /proc/slabinfo column

2019-01-31 Thread Tobin C. Harding
On Thu, Jan 31, 2019 at 05:13:06PM -0800, Andrew Morton wrote: > On Fri, 1 Feb 2019 11:58:38 +1100 "Tobin C. Harding" wrote: > > > On Fri, Feb 01, 2019 at 11:42:42AM +1100, Tobin C. Harding wrote: > > [snip] > > > > This applies on top of Linus' tree

Re: [PATCH] mm/slab: Increase width of first /proc/slabinfo column

2019-01-31 Thread Tobin C. Harding
On Fri, Feb 01, 2019 at 11:42:42AM +1100, Tobin C. Harding wrote: [snip] This applies on top of Linus' tree commit e74c98ca2d6a ('gfs2: Revert "Fix loop in gfs2_rbm_find"') For this patch I doubt very much that it matters but for the record I can't find mention in MAINTAINERS

[PATCH] mm/slab: Increase width of first /proc/slabinfo column

2019-01-31 Thread Tobin C. Harding
are longer than the cache names on this machine, in which case the columns would still be unaligned. Increase the width of the first column (cache name) in the output of /proc/slabinfo from 17 to 30 characters. Signed-off-by: Tobin C. Harding --- This patch does not touch the heading row

Re: [PATCH 0/3] slub: Do trivial comments fixes

2019-01-31 Thread Tobin C. Harding
On Thu, Jan 31, 2019 at 08:06:31AM +0200, Pekka Enberg wrote: > On 31/01/2019 6.10, Tobin C. Harding wrote: > > From: "Tobin C. Harding" > > > > Hi Christopher, > > > > Here is a trivial patchset to wet my toes. This is my first patchset to &g

Re: [PATCH 1/3] slub: Fix comment spelling mistake

2019-01-31 Thread Tobin C. Harding
On Thu, Jan 31, 2019 at 01:10:21AM -0700, William Kucharski wrote: > > > > On Jan 30, 2019, at 9:10 PM, Tobin C. Harding wrote: > > > > Signed-off-by: Tobin C. Harding > > --- > > include/linux/slub_def.h | 2 +- > > 1 file changed, 1 insertion(+), 1

[PATCH 1/3] slub: Fix comment spelling mistake

2019-01-30 Thread Tobin C. Harding
From: "Tobin C. Harding" SLUB include file contains spelling mistake. Fix up spelling mistake. Signed-off-by: Tobin C. Harding --- include/linux/slub_def.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/linux/slub_def.h b/include/linux/slub_d

[PATCH 3/3] slub: Use C89 comment style

2019-01-30 Thread Tobin C. Harding
From: "Tobin C. Harding" SLUB include file uses a c99 comment style. In line with the rest of the kernel lets use c89 comment style. Use C89 comment style. Signed-off-by: Tobin C. Harding --- include/linux/slub_def.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)

[PATCH 2/3] slub: Capitialize comment string

2019-01-30 Thread Tobin C. Harding
From: "Tobin C. Harding" SLUB include file has particularly clean comments, one comment string is holding us back. Capitialize comment string. Signed-off-by: Tobin C. Harding --- include/linux/slub_def.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/inc

[PATCH 0/3] slub: Do trivial comments fixes

2019-01-30 Thread Tobin C. Harding
From: "Tobin C. Harding" Hi Christopher, Here is a trivial patchset to wet my toes. This is my first patchset to mm, if there are some mm specific nuances in relation to when in the dev cycle (if ever) that minor (*cough* trivial) pathsets are acceptable please say so This patc

Re: [PATCH RFC 14/15] lib: replace **** with a hug

2018-12-02 Thread Tobin C. Harding
On Fri, Nov 30, 2018 at 11:27:23AM -0800, Jarkko Sakkinen wrote: > In order to comply with the CoC, replace with a hug. > > Signed-off-by: Jarkko Sakkinen > --- > lib/vsprintf.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/lib/vsprintf.c b/lib/vsprintf.c >

Re: [PATCH RFC 14/15] lib: replace **** with a hug

2018-12-02 Thread Tobin C. Harding
On Fri, Nov 30, 2018 at 11:27:23AM -0800, Jarkko Sakkinen wrote: > In order to comply with the CoC, replace with a hug. > > Signed-off-by: Jarkko Sakkinen > --- > lib/vsprintf.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/lib/vsprintf.c b/lib/vsprintf.c >

[PATCH v2 5/7] tty: Fix spacing between kernel-doc sections

2018-10-18 Thread Tobin C. Harding
There is a specified spacing for kernel-doc layout in Documentation/doc-guide/kernel-doc.rst we should try to adhere to it as much as possible. Fix spacing between sections. Signed-off-by: Tobin C. Harding --- drivers/tty/n_hdlc.c | 2 ++ drivers/tty/serial/serial-tegra.c | 2

[PATCH v2 6/7] tty: Remove newline after function kernel-doc

2018-10-18 Thread Tobin C. Harding
Currently there are many places were a newline is left between the kernel-doc function comment and the function it is documenting. There should not be a newline here. Remove newline after function kernel-doc. This patch is whitespace only. Signed-off-by: Tobin C. Harding --- drivers/tty

[PATCH v2 5/7] tty: Fix spacing between kernel-doc sections

2018-10-18 Thread Tobin C. Harding
There is a specified spacing for kernel-doc layout in Documentation/doc-guide/kernel-doc.rst we should try to adhere to it as much as possible. Fix spacing between sections. Signed-off-by: Tobin C. Harding --- drivers/tty/n_hdlc.c | 2 ++ drivers/tty/serial/serial-tegra.c | 2

[PATCH v2 6/7] tty: Remove newline after function kernel-doc

2018-10-18 Thread Tobin C. Harding
Currently there are many places were a newline is left between the kernel-doc function comment and the function it is documenting. There should not be a newline here. Remove newline after function kernel-doc. This patch is whitespace only. Signed-off-by: Tobin C. Harding --- drivers/tty

[PATCH v2 4/7] tty: Fix kernel-doc variable typos

2018-10-18 Thread Tobin C. Harding
There are a few typos in the kernel-doc variables [descriptions]. Fix these by using the correct variable name and adding a description. Fix kernel-doc variable typos. Signed-off-by: Tobin C. Harding --- drivers/tty/serial/men_z135_uart.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions

[PATCH v2 7/7] tty: Fix section format

2018-10-18 Thread Tobin C. Harding
or if changing it would make the comment less legible). Signed-off-by: Tobin C. Harding --- drivers/tty/hvc/hvc_console.c | 4 +- drivers/tty/hvc/hvc_iucv.c | 14 +-- drivers/tty/mips_ejtag_fdc.c| 4 +- drivers/tty/n_gsm.c | 37 drivers/tty/n_hdlc.c

[PATCH v2 4/7] tty: Fix kernel-doc variable typos

2018-10-18 Thread Tobin C. Harding
There are a few typos in the kernel-doc variables [descriptions]. Fix these by using the correct variable name and adding a description. Fix kernel-doc variable typos. Signed-off-by: Tobin C. Harding --- drivers/tty/serial/men_z135_uart.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions

[PATCH v2 7/7] tty: Fix section format

2018-10-18 Thread Tobin C. Harding
or if changing it would make the comment less legible). Signed-off-by: Tobin C. Harding --- drivers/tty/hvc/hvc_console.c | 4 +- drivers/tty/hvc/hvc_iucv.c | 14 +-- drivers/tty/mips_ejtag_fdc.c| 4 +- drivers/tty/n_gsm.c | 37 drivers/tty/n_hdlc.c

[PATCH v2 1/7] tty: Fix whitespace before tab warnings

2018-10-18 Thread Tobin C. Harding
. We do not fix any that are obviously there for extra-ordinary formatting reasons. Any line in the diff with obvious other formatting errors is fixed also excluding kernel-docs lines. Signed-off-by: Tobin C. Harding --- Actually, checkpatch is only noisy on a couple of patches from this set

[PATCH v2 0/7] drivers: tty: Fix kernel-docs comments

2018-10-18 Thread Tobin C. Harding
run when required: `git commit --amend --author="Tobin C. Harding " - Fix introduced 'space before tab warnings' in patch 3 and 7. Tobin C. Harding (7): tty: Fix whitespace before tab warnings tty: Remove trailing whitespace tty: Partially fix kernel-docs layout tty: F

[PATCH v2 1/7] tty: Fix whitespace before tab warnings

2018-10-18 Thread Tobin C. Harding
. We do not fix any that are obviously there for extra-ordinary formatting reasons. Any line in the diff with obvious other formatting errors is fixed also excluding kernel-docs lines. Signed-off-by: Tobin C. Harding --- Actually, checkpatch is only noisy on a couple of patches from this set

[PATCH v2 0/7] drivers: tty: Fix kernel-docs comments

2018-10-18 Thread Tobin C. Harding
run when required: `git commit --amend --author="Tobin C. Harding " - Fix introduced 'space before tab warnings' in patch 3 and 7. Tobin C. Harding (7): tty: Fix whitespace before tab warnings tty: Remove trailing whitespace tty: Partially fix kernel-docs layout tty: F

Re: [PATCH 2/7] tty: Remove trailing whitespace

2018-10-17 Thread Tobin C. Harding
On Thu, Oct 18, 2018 at 07:19:33AM +0200, Greg Kroah-Hartman wrote: > On Wed, Oct 17, 2018 at 10:21:25AM +1100, Tobin C. Harding wrote: > > From: "Tobin C. Harding" > > > > Currently files under drivers/tty/ contain trailing whitespace. This is > > easy

Re: [PATCH 2/7] tty: Remove trailing whitespace

2018-10-17 Thread Tobin C. Harding
On Thu, Oct 18, 2018 at 07:19:33AM +0200, Greg Kroah-Hartman wrote: > On Wed, Oct 17, 2018 at 10:21:25AM +1100, Tobin C. Harding wrote: > > From: "Tobin C. Harding" > > > > Currently files under drivers/tty/ contain trailing whitespace. This is > > easy

Re: [PATCH 0/7] drivers: tty: Fix kernel-docs comments

2018-10-17 Thread Tobin C. Harding
On Wed, Oct 17, 2018 at 09:00:26AM +0200, Geert Uytterhoeven wrote: > Hi Tobin, > > Thanks for your series! > > On Wed, Oct 17, 2018 at 1:23 AM Tobin C. Harding wrote: > > My first patch set using kernel.org email address. I've been so careful > > with this one I

Re: [PATCH 0/7] drivers: tty: Fix kernel-docs comments

2018-10-17 Thread Tobin C. Harding
On Wed, Oct 17, 2018 at 09:00:26AM +0200, Geert Uytterhoeven wrote: > Hi Tobin, > > Thanks for your series! > > On Wed, Oct 17, 2018 at 1:23 AM Tobin C. Harding wrote: > > My first patch set using kernel.org email address. I've been so careful > > with this one I

Re: [PATCH 0/7] drivers: tty: Fix kernel-docs comments

2018-10-17 Thread Tobin C. Harding
On Wed, Oct 17, 2018 at 09:00:26AM +0200, Geert Uytterhoeven wrote: > Hi Tobin, > > Thanks for your series! > > On Wed, Oct 17, 2018 at 1:23 AM Tobin C. Harding wrote: > > My first patch set using kernel.org email address. I've been so careful > > with this one I

Re: [PATCH 0/7] drivers: tty: Fix kernel-docs comments

2018-10-17 Thread Tobin C. Harding
On Wed, Oct 17, 2018 at 09:00:26AM +0200, Geert Uytterhoeven wrote: > Hi Tobin, > > Thanks for your series! > > On Wed, Oct 17, 2018 at 1:23 AM Tobin C. Harding wrote: > > My first patch set using kernel.org email address. I've been so careful > > with this one I

[PATCH 7/7] tty: Fix section format

2018-10-16 Thread Tobin C. Harding
C. Harding --- drivers/tty/hvc/hvc_console.c | 4 +- drivers/tty/hvc/hvc_iucv.c | 14 +-- drivers/tty/mips_ejtag_fdc.c| 4 +- drivers/tty/n_gsm.c | 37 drivers/tty/n_hdlc.c| 14 +-- drivers/tty/n_tracerouter.c | 14

[PATCH 4/7] tty: Fix kernel-doc variable typos

2018-10-16 Thread Tobin C. Harding
From: "Tobin C. Harding" There are a few typos in the kernel-doc variables [descriptions]. Fix these by using the correct variable name and adding a description. Fix kernel-doc variable typos. Signed-off-by: Tobin C. Harding --- drivers/tty/serial/men_z135_uart.c | 4 ++-- 1 file

[PATCH 7/7] tty: Fix section format

2018-10-16 Thread Tobin C. Harding
C. Harding --- drivers/tty/hvc/hvc_console.c | 4 +- drivers/tty/hvc/hvc_iucv.c | 14 +-- drivers/tty/mips_ejtag_fdc.c| 4 +- drivers/tty/n_gsm.c | 37 drivers/tty/n_hdlc.c| 14 +-- drivers/tty/n_tracerouter.c | 14

[PATCH 4/7] tty: Fix kernel-doc variable typos

2018-10-16 Thread Tobin C. Harding
From: "Tobin C. Harding" There are a few typos in the kernel-doc variables [descriptions]. Fix these by using the correct variable name and adding a description. Fix kernel-doc variable typos. Signed-off-by: Tobin C. Harding --- drivers/tty/serial/men_z135_uart.c | 4 ++-- 1 file

[PATCH 1/7] tty: Fix whitespace before tab warnings

2018-10-16 Thread Tobin C. Harding
. We do not fix any that are obviously there for extra-ordinary formatting reasons. Any line in the diff with obvious other formatting errors is fixed also excluding kernel-docs lines. Signed-off-by: Tobin C. Harding --- drivers/tty/amiserial.c | 43 --- drivers/tty/hvc

[PATCH 6/7] tty: Remove newline after function kernel-doc

2018-10-16 Thread Tobin C. Harding
From: "Tobin C. Harding" Currently there are many places were a newline is left between the kernel-doc function comment and the function it is documenting. There should not be a newline here. Remove newline after function kernel-doc. This patch is whitespace only. Signed-off-b

[PATCH 1/7] tty: Fix whitespace before tab warnings

2018-10-16 Thread Tobin C. Harding
. We do not fix any that are obviously there for extra-ordinary formatting reasons. Any line in the diff with obvious other formatting errors is fixed also excluding kernel-docs lines. Signed-off-by: Tobin C. Harding --- drivers/tty/amiserial.c | 43 --- drivers/tty/hvc

[PATCH 6/7] tty: Remove newline after function kernel-doc

2018-10-16 Thread Tobin C. Harding
From: "Tobin C. Harding" Currently there are many places were a newline is left between the kernel-doc function comment and the function it is documenting. There should not be a newline here. Remove newline after function kernel-doc. This patch is whitespace only. Signed-off-b

[PATCH 0/7] drivers: tty: Fix kernel-docs comments

2018-10-16 Thread Tobin C. Harding
this. This set is super non-critical so please only review at your leisure. thanks, Tobin. Tobin C. Harding (7): tty: Fix whitespace before tab warnings tty: Remove trailing whitespace tty: Partially fix kernel-docs layout tty: Fix kernel-doc variable typos tty: Fix spacing between

[PATCH 5/7] tty: Fix spacing between kernel-doc sections

2018-10-16 Thread Tobin C. Harding
There is a specified spacing for kernel-doc layout in Documentation/doc-guide/kernel-doc.rst we should try to adhere to it as much as possible. Fix spacing between sections. Signed-off-by: Tobin C. Harding --- drivers/tty/n_hdlc.c | 2 ++ drivers/tty/serial/serial-tegra.c | 2

[PATCH 0/7] drivers: tty: Fix kernel-docs comments

2018-10-16 Thread Tobin C. Harding
this. This set is super non-critical so please only review at your leisure. thanks, Tobin. Tobin C. Harding (7): tty: Fix whitespace before tab warnings tty: Remove trailing whitespace tty: Partially fix kernel-docs layout tty: Fix kernel-doc variable typos tty: Fix spacing between

[PATCH 5/7] tty: Fix spacing between kernel-doc sections

2018-10-16 Thread Tobin C. Harding
There is a specified spacing for kernel-doc layout in Documentation/doc-guide/kernel-doc.rst we should try to adhere to it as much as possible. Fix spacing between sections. Signed-off-by: Tobin C. Harding --- drivers/tty/n_hdlc.c | 2 ++ drivers/tty/serial/serial-tegra.c | 2

Re: [PATCH bpf-next 12/13] docs: net: Fix various minor typos

2018-08-05 Thread Tobin C. Harding
On Fri, Aug 03, 2018 at 10:41:12AM +0200, Daniel Borkmann wrote: > On 08/01/2018 07:09 AM, Tobin C. Harding wrote: > > There are a few minor typos and grammatical issues. We should however > > try to keep the current flavour of the document. > > > > Fix typos and gr

Re: [PATCH bpf-next 12/13] docs: net: Fix various minor typos

2018-08-05 Thread Tobin C. Harding
On Fri, Aug 03, 2018 at 10:41:12AM +0200, Daniel Borkmann wrote: > On 08/01/2018 07:09 AM, Tobin C. Harding wrote: > > There are a few minor typos and grammatical issues. We should however > > try to keep the current flavour of the document. > > > > Fix typos and gr

Re: [PATCH bpf-next 05/13] docs: net: Fix indentation issues for code snippets

2018-08-05 Thread Tobin C. Harding
On Fri, Aug 03, 2018 at 10:44:23AM +0200, Daniel Borkmann wrote: > On 08/01/2018 07:09 AM, Tobin C. Harding wrote: > [...] > > -Starting bpf_dbg is trivial and just requires issuing: > > +Starting bpf_dbg is trivial and just requires issuing:: > > > > -

Re: [PATCH bpf-next 05/13] docs: net: Fix indentation issues for code snippets

2018-08-05 Thread Tobin C. Harding
On Fri, Aug 03, 2018 at 10:44:23AM +0200, Daniel Borkmann wrote: > On 08/01/2018 07:09 AM, Tobin C. Harding wrote: > [...] > > -Starting bpf_dbg is trivial and just requires issuing: > > +Starting bpf_dbg is trivial and just requires issuing:: > > > > -

Re: [PATCH net-next 0/2] docs: net: Convert netdev-FAQ to RST

2018-07-24 Thread Tobin C. Harding
On Wed, Jul 25, 2018 at 12:50:03PM +1000, Tobin C. Harding wrote: Please drop this. I've forgotten to deal with the links from Documentation/*.rst to Documentation/networking/netdev-FAQ.txt Since I've already botched it can I ask for guidance here. The problem is updating the links means

Re: [PATCH net-next 0/2] docs: net: Convert netdev-FAQ to RST

2018-07-24 Thread Tobin C. Harding
On Wed, Jul 25, 2018 at 12:50:03PM +1000, Tobin C. Harding wrote: Please drop this. I've forgotten to deal with the links from Documentation/*.rst to Documentation/networking/netdev-FAQ.txt Since I've already botched it can I ask for guidance here. The problem is updating the links means

[PATCH net-next v2 2/2] docs: networking: Convert bridge.txt to rst

2018-07-17 Thread Tobin C. Harding
The kernel documentation is now restructured text. Convert the Ethernet Bridge documentation and include it in the toplevel kernel documentation. - Fix heading adornments. - Add license identifier. Signed-off-by: Tobin C. Harding --- Documentation/networking/{bridge.txt => bridge.rst}

[PATCH net-next v2 1/2] docs: networking: Convert alias.txt to rst

2018-07-17 Thread Tobin C. Harding
license identifier. Signed-off-by: Tobin C. Harding --- Documentation/networking/00-INDEX | 2 -- Documentation/networking/alias.rst | 49 ++ Documentation/networking/alias.txt | 40 Documentation/networking/index.rst | 1 + 4 files changed

[PATCH net-next v2 2/2] docs: networking: Convert bridge.txt to rst

2018-07-17 Thread Tobin C. Harding
The kernel documentation is now restructured text. Convert the Ethernet Bridge documentation and include it in the toplevel kernel documentation. - Fix heading adornments. - Add license identifier. Signed-off-by: Tobin C. Harding --- Documentation/networking/{bridge.txt => bridge.rst}

[PATCH net-next v2 1/2] docs: networking: Convert alias.txt to rst

2018-07-17 Thread Tobin C. Harding
license identifier. Signed-off-by: Tobin C. Harding --- Documentation/networking/00-INDEX | 2 -- Documentation/networking/alias.rst | 49 ++ Documentation/networking/alias.txt | 40 Documentation/networking/index.rst | 1 + 4 files changed

Re: [PATCH 0/3] fix: enable early printing of hashed pointers

2018-07-09 Thread Tobin C. Harding
On Mon, Jul 09, 2018 at 10:07:16PM -0400, Steven Rostedt wrote: > On Tue, 10 Jul 2018 10:25:16 +1000 > "Tobin C. Harding" wrote: > > > Since I'm a massive noob I did not realise that since v7 of this set was > > applied to random-next already that doing increme

Re: [PATCH 0/3] fix: enable early printing of hashed pointers

2018-07-09 Thread Tobin C. Harding
On Mon, Jul 09, 2018 at 10:07:16PM -0400, Steven Rostedt wrote: > On Tue, 10 Jul 2018 10:25:16 +1000 > "Tobin C. Harding" wrote: > > > Since I'm a massive noob I did not realise that since v7 of this set was > > applied to random-next already that doing increme

[PATCH 2/3] vsprintf: Remove incorrect EXPORT_SYMBOL

2018-07-09 Thread Tobin C. Harding
incorrect usage of macro EXPORT_SYMBOL() Fixes: bfe80ed3d7c76 ("vsprintf: add command line option debug_boot_weak_hash") Signed-off-by: Tobin C. Harding --- lib/vsprintf.c | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/vsprintf.c b/lib/vsprintf.c index cdc2c355dff5..fe834a201f3d 100644

[PATCH 2/3] vsprintf: Remove incorrect EXPORT_SYMBOL

2018-07-09 Thread Tobin C. Harding
incorrect usage of macro EXPORT_SYMBOL() Fixes: bfe80ed3d7c76 ("vsprintf: add command line option debug_boot_weak_hash") Signed-off-by: Tobin C. Harding --- lib/vsprintf.c | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/vsprintf.c b/lib/vsprintf.c index cdc2c355dff5..fe834a201f3d 100644

[PATCH 3/3] docs: Fix docs for boot parameter debug_boot_weak_hash

2018-07-09 Thread Tobin C. Harding
'debug_boot_weak_hash' as discussed (patch posted and acked) on LKML. Fixes: bfe80ed3d7c76 ("vsprintf: add command line option debug_boot_weak_hash") Acked-by: Randy Dunlap Signed-off-by: Tobin C. Harding --- Documentation/admin-guide/kernel-parameters.txt | 13 ++--- 1 file

[PATCH 3/3] docs: Fix docs for boot parameter debug_boot_weak_hash

2018-07-09 Thread Tobin C. Harding
'debug_boot_weak_hash' as discussed (patch posted and acked) on LKML. Fixes: bfe80ed3d7c76 ("vsprintf: add command line option debug_boot_weak_hash") Acked-by: Randy Dunlap Signed-off-by: Tobin C. Harding --- Documentation/admin-guide/kernel-parameters.txt | 13 ++--- 1 file

[PATCH 1/3] random: Remove unnecessary cast

2018-07-09 Thread Tobin C. Harding
Currently we are casting an argument to the macro min_t(). This is unnecessary since the macro already includes a cast. Remove unnecessary cast from argument to macro min_t() Signed-off-by: Tobin C. Harding --- drivers/char/random.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff

[PATCH 0/3] fix: enable early printing of hashed pointers

2018-07-09 Thread Tobin C. Harding
build warning" - thanks Arnd). Epic amounts of confusion, solely caused as usual by myself. thanks, Tobin. Tobin C. Harding (3): random: Remove unnecessary cast vsprintf: Remove incorrect EXPORT_SYMBOL docs: Fix docs for boot parameter debug_boot_weak_hash Documentation/admin-gu

[PATCH 1/3] random: Remove unnecessary cast

2018-07-09 Thread Tobin C. Harding
Currently we are casting an argument to the macro min_t(). This is unnecessary since the macro already includes a cast. Remove unnecessary cast from argument to macro min_t() Signed-off-by: Tobin C. Harding --- drivers/char/random.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff

[PATCH 0/3] fix: enable early printing of hashed pointers

2018-07-09 Thread Tobin C. Harding
build warning" - thanks Arnd). Epic amounts of confusion, solely caused as usual by myself. thanks, Tobin. Tobin C. Harding (3): random: Remove unnecessary cast vsprintf: Remove incorrect EXPORT_SYMBOL docs: Fix docs for boot parameter debug_boot_weak_hash Documentation/admin-gu

Re: [PATCH] vsprintf: fix build warning

2018-07-09 Thread Tobin C. Harding
On Fri, Jul 06, 2018 at 11:49:51AM -0400, Steven Rostedt wrote: > On Fri, 6 Jul 2018 23:42:13 +0900 > Sergey Senozhatsky wrote: > > > On (07/06/18 15:47), Arnd Bergmann wrote: > > [..] > > > Fixes: bfe80ed3d7c7 ("vsprintf: add command line option > > > debug_boot_weak_hash") > > > > Seems

Re: [PATCH] vsprintf: fix build warning

2018-07-09 Thread Tobin C. Harding
On Fri, Jul 06, 2018 at 11:49:51AM -0400, Steven Rostedt wrote: > On Fri, 6 Jul 2018 23:42:13 +0900 > Sergey Senozhatsky wrote: > > > On (07/06/18 15:47), Arnd Bergmann wrote: > > [..] > > > Fixes: bfe80ed3d7c7 ("vsprintf: add command line option > > > debug_boot_weak_hash") > > > > Seems

[PATCH v9 2/4] random: Return nbytes filled from hw RNG

2018-06-21 Thread Tobin C. Harding
(). Only get random bytes from the hw RNG, make function return the number of bytes retrieved from the hw RNG. Acked-by: Theodore Ts'o Reviewed-by: Steven Rostedt (VMware) Signed-off-by: Tobin C. Harding --- drivers/char/random.c | 16 +--- include/linux/random.h | 2 +- 2 files

[PATCH v9 2/4] random: Return nbytes filled from hw RNG

2018-06-21 Thread Tobin C. Harding
(). Only get random bytes from the hw RNG, make function return the number of bytes retrieved from the hw RNG. Acked-by: Theodore Ts'o Reviewed-by: Steven Rostedt (VMware) Signed-off-by: Tobin C. Harding --- drivers/char/random.c | 16 +--- include/linux/random.h | 2 +- 2 files

[PATCH v9 4/4] vsprintf: Add command line option debug_boot_weak_hash

2018-06-21 Thread Tobin C. Harding
) Signed-off-by: Tobin C. Harding --- Documentation/admin-guide/kernel-parameters.txt | 8 lib/vsprintf.c | 17 + 2 files changed, 25 insertions(+) diff --git a/Documentation/admin-guide/kernel-parameters.txt b/Documentation/admin-guide

[PATCH v9 4/4] vsprintf: Add command line option debug_boot_weak_hash

2018-06-21 Thread Tobin C. Harding
) Signed-off-by: Tobin C. Harding --- Documentation/admin-guide/kernel-parameters.txt | 8 lib/vsprintf.c | 17 + 2 files changed, 25 insertions(+) diff --git a/Documentation/admin-guide/kernel-parameters.txt b/Documentation/admin-guide

[PATCH v9 3/4] vsprintf: Use hw RNG for ptr_key

2018-06-21 Thread Tobin C. Harding
Currently we must wait for enough entropy to become available before hashed pointers can be printed. We can remove this wait by using the hw RNG if available. Use hw RNG to get keying material. Reviewed-by: Steven Rostedt (VMware) Suggested-by: Kees Cook Signed-off-by: Tobin C. Harding

[PATCH v9 3/4] vsprintf: Use hw RNG for ptr_key

2018-06-21 Thread Tobin C. Harding
Currently we must wait for enough entropy to become available before hashed pointers can be printed. We can remove this wait by using the hw RNG if available. Use hw RNG to get keying material. Reviewed-by: Steven Rostedt (VMware) Suggested-by: Kees Cook Signed-off-by: Tobin C. Harding

[PATCH v9 1/4] random: Fix whitespace pre random-bytes work

2018-06-21 Thread Tobin C. Harding
There are a couple of whitespace issues around the function get_random_bytes_arch(). In preparation for patching this function let's clean them up. Acked-by: Theodore Ts'o Signed-off-by: Tobin C. Harding --- drivers/char/random.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff

[PATCH v9 1/4] random: Fix whitespace pre random-bytes work

2018-06-21 Thread Tobin C. Harding
There are a couple of whitespace issues around the function get_random_bytes_arch(). In preparation for patching this function let's clean them up. Acked-by: Theodore Ts'o Signed-off-by: Tobin C. Harding --- drivers/char/random.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff

[PATCH v9 0/4] enable early printing of hashed pointers

2018-06-21 Thread Tobin C. Harding
). - Added Acked-by tag from Ted (patch 1 and 2) Tobin C. Harding (4): random: Fix whitespace pre random-bytes work random: Return nbytes filled from hw RNG vsprintf: Use hw RNG for ptr_key vsprintf: Add command line option debug_boot_weak_hash .../admin-guide/kernel-parameters.txt

[PATCH v9 0/4] enable early printing of hashed pointers

2018-06-21 Thread Tobin C. Harding
). - Added Acked-by tag from Ted (patch 1 and 2) Tobin C. Harding (4): random: Fix whitespace pre random-bytes work random: Return nbytes filled from hw RNG vsprintf: Use hw RNG for ptr_key vsprintf: Add command line option debug_boot_weak_hash .../admin-guide/kernel-parameters.txt

Re: [PATCH v8 4/4] vsprintf: Add command line option debug_boot_weak_hash

2018-06-20 Thread Tobin C. Harding
On Wed, Jun 20, 2018 at 09:09:49PM -0700, Randy Dunlap wrote: > On 06/20/2018 08:15 PM, Tobin C. Harding wrote: > > On Wed, Jun 20, 2018 at 04:38:05PM -0700, Randy Dunlap wrote: > >> On 06/20/2018 04:22 PM, Tobin C. Harding wrote: > >>> On Wed, Jun 20, 2018 at 03:36:

Re: [PATCH v8 4/4] vsprintf: Add command line option debug_boot_weak_hash

2018-06-20 Thread Tobin C. Harding
On Wed, Jun 20, 2018 at 09:09:49PM -0700, Randy Dunlap wrote: > On 06/20/2018 08:15 PM, Tobin C. Harding wrote: > > On Wed, Jun 20, 2018 at 04:38:05PM -0700, Randy Dunlap wrote: > >> On 06/20/2018 04:22 PM, Tobin C. Harding wrote: > >>> On Wed, Jun 20, 2018 at 03:36:

Re: [PATCH v8 4/4] vsprintf: Add command line option debug_boot_weak_hash

2018-06-20 Thread Tobin C. Harding
On Wed, Jun 20, 2018 at 04:38:05PM -0700, Randy Dunlap wrote: > On 06/20/2018 04:22 PM, Tobin C. Harding wrote: > > On Wed, Jun 20, 2018 at 03:36:44PM -0700, Randy Dunlap wrote: > >> On 06/20/2018 03:30 PM, Tobin C. Harding wrote: > >>> On Wed, Jun 20, 2018 at 09:09:

Re: [PATCH v8 4/4] vsprintf: Add command line option debug_boot_weak_hash

2018-06-20 Thread Tobin C. Harding
On Wed, Jun 20, 2018 at 04:38:05PM -0700, Randy Dunlap wrote: > On 06/20/2018 04:22 PM, Tobin C. Harding wrote: > > On Wed, Jun 20, 2018 at 03:36:44PM -0700, Randy Dunlap wrote: > >> On 06/20/2018 03:30 PM, Tobin C. Harding wrote: > >>> On Wed, Jun 20, 2018 at 09:09:

Re: [PATCH v8 4/4] vsprintf: Add command line option debug_boot_weak_hash

2018-06-20 Thread Tobin C. Harding
On Wed, Jun 20, 2018 at 03:36:44PM -0700, Randy Dunlap wrote: > On 06/20/2018 03:30 PM, Tobin C. Harding wrote: > > On Wed, Jun 20, 2018 at 09:09:49AM -0700, Randy Dunlap wrote: > >> On 06/19/2018 09:20 PM, Tobin C. Harding wrote: > >>> Currently printing [hashed] po

Re: [PATCH v8 4/4] vsprintf: Add command line option debug_boot_weak_hash

2018-06-20 Thread Tobin C. Harding
On Wed, Jun 20, 2018 at 03:36:44PM -0700, Randy Dunlap wrote: > On 06/20/2018 03:30 PM, Tobin C. Harding wrote: > > On Wed, Jun 20, 2018 at 09:09:49AM -0700, Randy Dunlap wrote: > >> On 06/19/2018 09:20 PM, Tobin C. Harding wrote: > >>> Currently printing [hashed] po

Re: [PATCH v8 4/4] vsprintf: Add command line option debug_boot_weak_hash

2018-06-20 Thread Tobin C. Harding
On Wed, Jun 20, 2018 at 09:09:49AM -0700, Randy Dunlap wrote: > On 06/19/2018 09:20 PM, Tobin C. Harding wrote: > > Currently printing [hashed] pointers requires enough entropy to be > > available. Early in the boot sequence this may not be the case > > result

Re: [PATCH v8 4/4] vsprintf: Add command line option debug_boot_weak_hash

2018-06-20 Thread Tobin C. Harding
On Wed, Jun 20, 2018 at 09:09:49AM -0700, Randy Dunlap wrote: > On 06/19/2018 09:20 PM, Tobin C. Harding wrote: > > Currently printing [hashed] pointers requires enough entropy to be > > available. Early in the boot sequence this may not be the case > > result

Re: [PATCH v3 1/4] seccomp: add a return code to trap to userspace

2018-06-19 Thread Tobin C . Harding
A few other piddly suggestions. On Thu, May 31, 2018 at 08:49:46AM -0600, Tycho Andersen wrote: > This patch introduces a means for syscalls matched in seccomp to notify > some other task that a particular filter has been triggered. > > The motivation for this is primarily for use with

Re: [PATCH v3 1/4] seccomp: add a return code to trap to userspace

2018-06-19 Thread Tobin C . Harding
A few other piddly suggestions. On Thu, May 31, 2018 at 08:49:46AM -0600, Tycho Andersen wrote: > This patch introduces a means for syscalls matched in seccomp to notify > some other task that a particular filter has been triggered. > > The motivation for this is primarily for use with

Re: [PATCH v3 1/4] seccomp: add a return code to trap to userspace

2018-06-19 Thread Tobin C . Harding
On Thu, May 31, 2018 at 08:49:46AM -0600, Tycho Andersen wrote: > This patch introduces a means for syscalls matched in seccomp to notify > some other task that a particular filter has been triggered. > > The motivation for this is primarily for use with containers. For example, > if a container

Re: [PATCH v3 1/4] seccomp: add a return code to trap to userspace

2018-06-19 Thread Tobin C . Harding
On Thu, May 31, 2018 at 08:49:46AM -0600, Tycho Andersen wrote: > This patch introduces a means for syscalls matched in seccomp to notify > some other task that a particular filter has been triggered. > > The motivation for this is primarily for use with containers. For example, > if a container

[PATCH v8 2/4] random: Return nbytes filled from hw RNG

2018-06-19 Thread Tobin C. Harding
(). Only get random bytes from the hw RNG, make function return the number of bytes retrieved from the hw RNG. Acked-by: Theodore Ts'o Reviewed-by: Steven Rostedt (VMware) Signed-off-by: Tobin C. Harding --- drivers/char/random.c | 16 +--- include/linux/random.h | 2 +- 2 files

<    1   2   3   4   5   6   7   8   9   10   >