Re: [PATCH v3 DONOTMERGE] docs: clarify rules wrt tagging other people

2024-12-03 Thread Shuah Khan
data protection regulation) Thank you for taking care of this. Reviewed-by: Shuah Khan thanks, -- Shuah

Re: [PATCH v2 0/3] Make Helped-by tag supported

2024-12-03 Thread Shuah Khan
ription. Just checking, are there any further thoughts on this patch? I agree with Dan & Jon; we don't need this tag. And if someone's doing a poor job of writing commit messages, they need to be helped to write better ones. +1 on this. I don't think we need yet another tag. thanks, -- Shuah

Re: [PATCH v4] Documentation/CoC: spell out enforcement for unacceptable behaviors

2024-11-15 Thread Shuah Khan
On 11/15/24 14:32, Jonathan Corbet wrote: Shuah Khan writes: The Code of Conduct committee's goal first and foremost is to bring about change to ensure our community continues to foster respectful discussions. In the interest of transparency, the CoC enforcement policy is formalize

[PATCH v4] Documentation/CoC: spell out enforcement for unacceptable behaviors

2024-11-14 Thread Shuah Khan
ation document with the enforcement information. Acked-by: Linus Torvalds Acked-by: Greg Kroah-Hartman Acked-by: Miguel Ojeda Acked-by: Dave Hansen Acked-by: Jonathan Corbet Acked-by: Steven Rostedt Acked-by: Dan Williams Acked-by: Theodore Ts'o Acked-by: Konstantin Ryabitsev Signed-off

Re: [PATCH v3] Documentation/CoC: spell out enforcement for unacceptable behaviors

2024-11-14 Thread Shuah Khan
On 11/14/24 07:38, Konstantin Ryabitsev wrote: On Wed, Nov 13, 2024 at 04:25:57PM -0700, Shuah Khan wrote: +The scope of the ban for a period of time could include: + +a. denying patch contributions and pull requests +b. pausing collaboration with the violator by ignoring their

[PATCH v3] Documentation/CoC: spell out enforcement for unacceptable behaviors

2024-11-13 Thread Shuah Khan
ation document with the enforcement information. Acked-by: Linus Torvalds Acked-by: Greg Kroah-Hartman Acked-by: Miguel Ojeda Acked-by: Dave Hansen Acked-by: Jonathan Corbet Acked-by: Steven Rostedt Acked-by: Dan Williams Acked-by: Theodore Ts'o Signed-off-by: Shuah Khan --- Change

Re: [PATCH v2] Documentation/CoC: spell out enforcement for unacceptable behaviors

2024-11-12 Thread Shuah Khan
On 11/12/24 12:21, Daniel Vetter wrote: On Mon, 11 Nov 2024 at 17:39, Shuah Khan wrote: The Code of Conduct committee's goal first and foremost is to bring about change to ensure our community continues to foster respectful discussions. In the interest of transparency, the CoC enforc

[PATCH v2] Documentation/CoC: spell out enforcement for unacceptable behaviors

2024-11-11 Thread Shuah Khan
ation document with the enforcement information. Acked-by: Linus Torvalds Acked-by: Greg Kroah-Hartman Acked-by: Miguel Ojeda Acked-by: Dave Hansen Acked-by: Jonathan Corbet Acked-by: Steven Rostedt Acked-by: Dan Williams Acked-by: Theodore Ts'o Signed-off-by: Shuah Khan --- Change

[PATCH] Documentation/CoC: spell out enforcement for unacceptable behaviors

2024-11-08 Thread Shuah Khan
ation document with the enforcement information. Acked-by: Linus Torvalds Acked-by: Greg Kroah-Hartman Acked-by: Miguel Ojeda Acked-by: Dave Hansen Acked-by: Jonathan Corbet Acked-by: Steven Rostedt Acked-by: Dan Williams Signed-off-by: Shuah Khan --- .../code-of-conduct-interpretatio

Re: [PATCH v2 9/9] kselftest/arm64: Add 2024 dpISA extensions to hwcap test

2024-10-31 Thread Shuah Khan
able anyway */ +} + You anticpated "not used" messages looks like. I see that this gets called - thanks. Looks good to me. With the change to change log Reviewed-by: Shuah Khan thanks, -- Shuah

Re: [PATCH] docs/dev-tools: fix a typo

2024-10-16 Thread Shuah Khan
hen that is the intended meaning. +1 on this. It would be too attractive for new developers. It helps us not spend cycles on reviewing and applying the patches. thanks, -- Shuah

Re: [PATCH] docs:process:changes: fix version command for btrfs-progs

2024-10-14 Thread Shuah Khan
rfs-progs0.18 btrfsck +btrfs-progs0.18 btrfs --version pcmciautils004 pccardctl -V quota-tools3.09 quota -V PPP2.4.0pppd --version thanks, -- Shuah

Re: [PATCH] docs: dev-tools: Add documentation for the device focused kselftests

2024-10-04 Thread Shuah Khan
On 10/4/24 11:36, Jonathan Corbet wrote: Shuah Khan writes: Jon, Let me know if you would like me to take this through kselftest tree. I'm happy either way - go ahead and grab it if you like, just let me know. Thanks, jon Applied to linux-kselftest next for Linux 6.13-rc1. t

Re: [PATCH] docs: dev-tools: Add documentation for the device focused kselftests

2024-10-04 Thread Shuah Khan
On 10/3/24 08:41, Nícolas F. R. A. Prado wrote: On Wed, Oct 02, 2024 at 12:00:10PM -0600, Shuah Khan wrote: On 10/1/24 09:43, Nícolas F. R. A. Prado wrote: Add documentation for the kselftests focused on testing devices and point to it from the kselftest documentation. There are multiple tests

Re: [PATCH 33/33] kselftest/riscv: kselftest for user mode cfi

2024-10-03 Thread Shuah Khan
On 10/3/24 05:03, Mark Brown wrote: On Wed, Oct 02, 2024 at 05:18:36PM -0600, Shuah Khan wrote: On 10/1/24 10:06, Deepak Gupta wrote: +#ifndef __NR_prctl +#define __NR_prctl 167 +#endif +#ifndef __NR_map_shadow_stack +#define __NR_map_shadow_stack 453 Why do we need to define these

Re: [PATCH 33/33] kselftest/riscv: kselftest for user mode cfi

2024-10-02 Thread Shuah Khan
test returns true for success or false for fail + * takes a number for test number to index into array and void pointer. + */ +typedef bool (*shstk_test_func)(unsigned long test_num, void *); + +struct shadow_stack_tests { + char *name; + shstk_test_func t_func; +}; + +bool shadow_stack_fork_test(unsigned long test_num, void *ctx); +bool shadow_stack_map_test(unsigned long test_num, void *ctx); +bool shadow_stack_protection_test(unsigned long test_num, void *ctx); +bool shadow_stack_gup_tests(unsigned long test_num, void *ctx); +bool shadow_stack_signal_test(unsigned long test_num, void *ctx); + +static struct shadow_stack_tests shstk_tests[] = { + { "shstk fork test\n", shadow_stack_fork_test }, + { "map shadow stack syscall\n", shadow_stack_map_test }, + { "shadow stack gup tests\n", shadow_stack_gup_tests }, + { "shadow stack signal tests\n", shadow_stack_signal_test}, + { "memory protections of shadow stack memory\n", shadow_stack_protection_test } +}; + +#define RISCV_SHADOW_STACK_TESTS ARRAY_SIZE(shstk_tests) + +int execute_shadow_stack_tests(void); + +#endif thanks, -- Shuah

Re: [PATCH] docs: dev-tools: Add documentation for the device focused kselftests

2024-10-02 Thread Shuah Khan
--- base-commit: cea5425829f77e476b03702426f6b3701299b925 change-id: 20241001-kselftest-device-docs-6c8a411109b5 Best regards, thanks, -- Shuah

Re: [PATCH] docs: submitting-patches: Advertise b4

2024-09-03 Thread Shuah Khan
50ba change-id: 20240903-documentation-b4-advert-18016e83d7d9 Best regards, Looks good to me. Thanks for the update. Reviewed-by: Shuah Khan thanks, -- Shuah

Re: [PATCH] docs: maintainer: discourage taking conversations off-list

2024-07-12 Thread Shuah Khan
ce for the most part for work stemming from discussions at conferences such as LPC. Reviewed-by: Shuah Khan thanks, -- Shuah

Re: [PATCH] Documentation: kunit: Fix verification command

2019-10-07 Thread shuah
iven, it prints help message and just quit. However, an example command in the kunit documentation for a verification of kunit is missing the sub-command. This commit fixes the example. Signed-off-by: SeongJae Park Reviewed-by: Brendan Higgins Shuah, can you apply this to the kselftest KUnit

Re: [PATCH v2] doc: kselftest: update for clarity on running kselftests in CI rings

2019-08-29 Thread shuah
On 8/29/19 11:30 AM, Brendan Higgins wrote: On Mon, Aug 26, 2019 at 5:37 PM Shuah Khan wrote: Update to add clarity and recommendations on running newer kselftests on older kernels vs. matching the kernel and kselftest revisions. The recommendation is "Match kernel revision and ksel

Re: [PATCH v2] doc: kselftest: update for clarity on running kselftests in CI rings

2019-08-28 Thread shuah
On 8/26/19 6:37 PM, Shuah Khan wrote: Update to add clarity and recommendations on running newer kselftests on older kernels vs. matching the kernel and kselftest revisions. The recommendation is "Match kernel revision and kselftest." Signed-off-by: Shuah Khan --- Changes since

[PATCH v2] doc: kselftest: update for clarity on running kselftests in CI rings

2019-08-26 Thread Shuah Khan
Update to add clarity and recommendations on running newer kselftests on older kernels vs. matching the kernel and kselftest revisions. The recommendation is "Match kernel revision and kselftest." Signed-off-by: Shuah Khan --- Changes since v1: Fixed "WARNING: Title unde

Re: [PATCH] doc: kselftest: update for clarity on running kselftests in CI rings

2019-08-26 Thread Shuah Khan
On 8/26/19 6:07 PM, Shuah Khan wrote: Update to add clarity and recommendations on running newer kselftests on older kernels vs. matching the kernel and kselftest revisions. The recommendation is "Match kernel revision and kselftest." Signed-off-by: Shuah Khan --- Documentation

[PATCH] doc: kselftest: update for clarity on running kselftests in CI rings

2019-08-26 Thread Shuah Khan
Update to add clarity and recommendations on running newer kselftests on older kernels vs. matching the kernel and kselftest revisions. The recommendation is "Match kernel revision and kselftest." Signed-off-by: Shuah Khan --- Documentation/dev-tools/kselftes

Re: [PATCH v14 01/18] kunit: test: add KUnit test runner core

2019-08-23 Thread shuah
On 8/23/19 11:54 AM, Brendan Higgins wrote: On Fri, Aug 23, 2019 at 10:34 AM shuah wrote: On 8/23/19 11:27 AM, Brendan Higgins wrote: On Fri, Aug 23, 2019 at 10:05 AM shuah wrote: On 8/23/19 10:48 AM, Brendan Higgins wrote: On Fri, Aug 23, 2019 at 8:33 AM shuah wrote: Hi Brendan, On

Re: [PATCH v14 01/18] kunit: test: add KUnit test runner core

2019-08-23 Thread shuah
On 8/23/19 11:27 AM, Brendan Higgins wrote: On Fri, Aug 23, 2019 at 10:05 AM shuah wrote: On 8/23/19 10:48 AM, Brendan Higgins wrote: On Fri, Aug 23, 2019 at 8:33 AM shuah wrote: Hi Brendan, On 8/20/19 5:20 PM, Brendan Higgins wrote: Add core facilities for defining unit tests; this

Re: [PATCH v14 09/18] kunit: test: add support for test abort

2019-08-23 Thread shuah
On 8/23/19 10:56 AM, Brendan Higgins wrote: On Fri, Aug 23, 2019 at 8:36 AM shuah wrote: Hi Brendan, On 8/20/19 5:20 PM, Brendan Higgins wrote: Add support for aborting/bailing out of test cases, which is needed for implementing assertions. An assertion is like an expectation, but bails

Re: [PATCH v14 01/18] kunit: test: add KUnit test runner core

2019-08-23 Thread shuah
On 8/23/19 10:48 AM, Brendan Higgins wrote: On Fri, Aug 23, 2019 at 8:33 AM shuah wrote: Hi Brendan, On 8/20/19 5:20 PM, Brendan Higgins wrote: Add core facilities for defining unit tests; this provides a common way to define test cases, functions that execute code which is under test and

Re: [PATCH v14 09/18] kunit: test: add support for test abort

2019-08-23 Thread shuah
BUG(); I recall discussion on this. What's the point in keeping thie BUG() around when it doesn't even reach? It can even be a WARN_ON() in that case right? thanks, -- Shuah

Re: [PATCH v14 01/18] kunit: test: add KUnit test runner core

2019-08-23 Thread shuah
h an + * empty test case. + * + * Example: Can you fix these line continuations. It makes it very hard to read. Sorry for this late comment. These comments lines are longer than 80 and wrap. There are several comment lines in the file that are way too long. thanks, -- Shuah

Re: [PATCH v1] Doc : fs : convert xfs.txt to ReST

2019-06-28 Thread Shuah Khan
Hi Sheriff, On 6/28/19 3:43 PM, Sheriff Esseson wrote: Convert xfs.txt to ReST, markup and rename accordingly. Update Documentation/index.rst. While at it, make "value" in "option=value" form xfs options definable by the user, by embedding in angle "<>"

Re: [Linux-kernel-mentees][PATCH] doc: RCU callback locks need only _bh, not necessarily _irq

2019-06-27 Thread Shuah Khan
On 6/27/19 4:10 PM, Paul E. McKenney wrote: On Thu, Jun 27, 2019 at 04:01:35PM -0600, Shuah Khan wrote: On 6/27/19 3:01 PM, Jiunn Chang wrote: The UP.rst file calls for locks acquired within RCU callback functions to use _irq variants (spin_lock_irqsave() or similar), which does work, but can

Re: [Linux-kernel-mentees][PATCH] doc: RCU callback locks need only _bh, not necessarily _irq

2019-06-27 Thread Shuah Khan
re the lock. Please note that + it is also OK to use _irq variants of spinlocks, for example, + spin_lock_irqsave(). If the process-context code were to simply use spin_lock(), then, since RCU callbacks can be invoked from softirq context, thanks, -- Shuah

Re: [Linux-kernel-mentees][PATCH v5 1/5] Documentation: RCU: Convert RCU basic concepts to reST

2019-06-27 Thread Shuah Khan
mentees. I will add this to it. thanks, -- Shuah

Re: [Linux-kernel-mentees] [PATCH] Documentation: platform: convert x86-laptop-drivers.txt to reST

2019-06-20 Thread Shuah Khan
On 6/20/19 12:19 AM, Andy Shevchenko wrote: On Tue, Jun 18, 2019 at 6:06 PM Shuah Khan wrote: On 6/18/19 7:39 AM, Greg KH wrote: On Tue, Jun 18, 2019 at 07:17:17AM -0600, Jonathan Corbet wrote: On Tue, 18 Jun 2019 07:41:58 +0200 Greg KH wrote: On Tue, Jun 18, 2019 at 11:02:27AM +0530

Re: [Linux-kernel-mentees] [PATCH] Documentation: platform: convert x86-laptop-drivers.txt to reST

2019-06-18 Thread Shuah Khan
ndy, and Cezary, Would it be okay to remove the x86-laptop-drivers.txt or should it be converted to .rst and kept around? thanks, -- Shuah

Re: [PATCH resend] Documentation/dev-tools: clean up kselftest.rst

2018-11-05 Thread Shuah Khan
On 11/04/2018 03:06 PM, Randy Dunlap wrote: > From: Randy Dunlap > > This is a small cleanup to kselftest.rst: > > - Fix some language typos in the usage instructions. > - Change one non-ASCII space to an ASCII space. > > Signed-off-by: Randy Dunlap > Cc: Shuah

Re: [PATCH v2] doc: dev-tools: kselftest.rst: update contributing new tests

2018-04-24 Thread Shuah Khan
lled by the distro on the system should be the primary focus to be > able > + to find regressions. > + > Test Harness > > > Here is my reviewed by for this to go through documentation tree. Reviewed-by: Shuah Khan (Samsung OSG) thanks, -- Shuah -- T

Re: [PATCH] doc: dev-tools: kselftest.rst: update contributing new tests

2018-04-18 Thread Shuah Khan
to headers installed by the distro on the system would make a clear distinction. thanks, -- Shuah -- To unsubscribe from this list: send the line "unsubscribe linux-doc" in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html

Re: [PATCH] doc: dev-tools: kselftest.rst: update to include make O=dir support

2017-10-12 Thread Shuah Khan
On 10/12/2017 11:02 AM, Jonathan Corbet wrote: > On Mon, 2 Oct 2017 17:44:17 -0600 > Shuah Khan wrote: > >> Update to include details on make O=dir support and other changes improve >> test results output. > > So the three patches you sent me appear to be a part

[PATCH] doc: dev-tools: kselftest.rst: update to include make O=dir support

2017-10-02 Thread Shuah Khan
Update to include details on make O=dir support and other changes improve test results output. Signed-off-by: Shuah Khan --- Documentation/dev-tools/kselftest.rst | 34 -- 1 file changed, 32 insertions(+), 2 deletions(-) diff --git a/Documentation/dev-tools

[PATCH] doc: enhance dochelp include default output location for doc build

2017-10-02 Thread Shuah Khan
Enhance documentation help message to specify the default location for the generated documents. Signed-off-by: Shuah Khan --- Documentation/Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Documentation/Makefile b/Documentation/Makefile index 85f7856f0092..5e65fa5c6ab7 100644

Re: [PATCH v2 12/29] kselftest.rst: do some adjustments after ReST conversion

2017-06-26 Thread Shuah Khan
On 06/25/2017 01:35 PM, Jonathan Corbet wrote: > On Fri, 23 Jun 2017 18:47:51 -0600 > Shuah Khan wrote: > >> Please let me know if you want me to take this through linux-kselftest >> In which case, Ack the patch. If not, you already have my Ack. > > Go ah

Re: [PATCH v2 12/29] kselftest.rst: do some adjustments after ReST conversion

2017-06-23 Thread Shuah Khan
On 06/23/2017 03:32 PM, Mauro Carvalho Chehab wrote: > Em Fri, 23 Jun 2017 08:04:02 -0600 > Shuah Khan escreveu: > >> Hi Mauro, >> >> On 06/17/2017 09:26 AM, Mauro Carvalho Chehab wrote: >>> Do some minor adjustments after ReST conversion: >>&

Re: [PATCH v2 12/29] kselftest.rst: do some adjustments after ReST conversion

2017-06-23 Thread Shuah Khan
ulti-paragraph description as such. > > Signed-off-by: Mauro Carvalho Chehab Looks good to me. I can take this through linux-kselftest or here is my Ack for it to go through the doc tree with the rest in this series. Acked-by: Shuah Khan thanks, -- Shuah > --- &g

Re: [PATCH v6 0/7] Add kselftest_harness.h

2017-06-06 Thread Shuah Khan
> rename Documentation/{kselftest.txt => dev-tools/kselftest.rst} (52%) > rename tools/testing/selftests/{seccomp/test_harness.h => > kselftest_harness.h} (52%) > Applied the series to linux-kselftest next for 4.13-rc1 thanks for the series. -- Shuah -- To unsubscribe from this lis

Re: [PATCH v5 7/7] Documentation/dev-tools: Add kselftest_harness documentation

2017-06-05 Thread Shuah Khan
On 06/03/2017 05:17 AM, Mickaël Salaün wrote: > > On 02/06/2017 22:02, Shuah Khan wrote: >> Hi Mickaël, >> >> On 05/26/2017 12:44 PM, Mickaël Salaün wrote: >>> Add ReST metadata to kselftest_harness.h to be able to include the >>> comments in the Sphinx d

Re: [PATCH v5 3/7] selftests/seccomp: Force rebuild according to dependencies

2017-06-05 Thread Shuah Khan
Hi Mickaël, On 06/03/2017 05:13 AM, Mickaël Salaün wrote: > Hi Shuah, > > On 02/06/2017 21:31, Shuah Khan wrote: >> Hi Mickaël, >> >> On 05/26/2017 12:43 PM, Mickaël Salaün wrote: >>> Rebuild the seccomp tests when kselftest_harness.h is updated. >>>

Re: [PATCH v5 7/7] Documentation/dev-tools: Add kselftest_harness documentation

2017-06-02 Thread Shuah Khan
laün > Cc: Andy Lutomirski > Cc: Jonathan Corbet > Cc: Kees Cook > Cc: Shuah Khan > Cc: Will Drewry git am isn't happy: Applying: Documentation/dev-tools: Add kselftest_harness documentation .git/rebase-apply/patch:47: new blank line at EOF. + warning: 1 line adds whit

Re: [PATCH v5 3/7] selftests/seccomp: Force rebuild according to dependencies

2017-06-02 Thread Shuah Khan
Hi Mickaël, On 05/26/2017 12:43 PM, Mickaël Salaün wrote: > Rebuild the seccomp tests when kselftest_harness.h is updated. > > Signed-off-by: Mickaël Salaün > Acked-by: Kees Cook > Cc: Andy Lutomirski > Cc: Shuah Khan > Cc: Will Drewry > --- > tools/testing/sel

Re: [PATCH v5 0/7] Add kselftest_harness.h

2017-05-30 Thread Shuah Khan
ls: Use reStructuredText markups for kselftest >> selftests: Remove the TEST_API() wrapper from kselftest_harness.h >> Documentation/dev-tools: Add kselftest_harness documentation > > I think this series looks great; I've added my two remaining Acks. > Shuah, when you have time, pl

Re: [PATCH v3 0/6] Add kselftest_harness.h

2017-05-04 Thread Shuah Khan
elftest.rst} (50%) > rename tools/testing/selftests/{seccomp/test_harness.h => > kselftest_harness.h} (80%) > thanks, -- Shuah -- To unsubscribe from this list: send the line "unsubscribe linux-doc" in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html

Re: [PATCH] Doc: update kselftest.txt with details on how to run tests after install

2016-11-22 Thread Shuah Khan
On 11/08/2016 07:13 AM, Daniel Vetter wrote: > On Mon, Nov 07, 2016 at 01:24:14PM -0700, Shuah Khan wrote: >> Update kselftest.txt with details on how to run tests after install. >> >> Signed-off-by: Shuah Khan >> --- >> Documentation/kselftest.txt | 11 +

[PATCH] Doc: update kselftest.txt with details on how to run tests after install

2016-11-07 Thread Shuah Khan
Update kselftest.txt with details on how to run tests after install. Signed-off-by: Shuah Khan --- Documentation/kselftest.txt | 11 +++ 1 file changed, 11 insertions(+) diff --git a/Documentation/kselftest.txt b/Documentation/kselftest.txt index 54bee77..e5c7254 100644 --- a

[PATCH v2 2/2] Doc: update 00-INDEX files to reflect the runnable code move

2016-10-06 Thread Shuah Khan
Update 00-INDEX files with the current file list to reflect the runnable code move. Acked-by: Michal Marek Acked-by: Jonathan Corbet Reviewed-by: Kees Cook Signed-off-by: Shuah Khan --- Documentation/00-INDEX | 3 ++- Documentation/arm/00-INDEX | 2 -- Documentation

[PATCH v2 0/2] Moving runnable code from Documentation (last 2 patches)

2016-10-06 Thread Shuah Khan
Michal Marek, and reviewed by from Kees Cook Shuah Khan (2): samples: move blackfin gptimers-example from Documentation Doc: update 00-INDEX files to reflect the runnable code move Documentation/00-INDEX| 3 +- Documentation/Makefile| 2 +- Document

[PATCH v2 1/2] samples: move blackfin gptimers-example from Documentation

2016-10-06 Thread Shuah Khan
: Paul Gortmaker Signed-off-by: Shuah Khan --- Documentation/Makefile| 2 +- Documentation/blackfin/00-INDEX | 4 -- Documentation/blackfin/Makefile | 5 -- Documentation/blackfin/gptimers-example.c | 91 --- Makefile

Re: [kselftest:next 19/20] htmldocs: scripts/Makefile.build:44: Documentation/Makefile: No such file or directory

2016-10-03 Thread Shuah Khan
On 10/03/2016 10:20 AM, kbuild test robot wrote: > tree: > https://git.kernel.org/pub/scm/linux/kernel/git/shuah/linux-kselftest.git next > head: 94c630ee73a4a1db18561511dfefc2e41d2e6d1e > commit: c6d2995da5409e3d0ef30c53287d3c17e450e96e [19/20] samples: move > blackfin gptime

Re: [PATCH 0/2] Moving runnable code from Documentation (last 2 patches)

2016-09-30 Thread Shuah Khan
On 09/26/2016 12:40 PM, Shuah Khan wrote: > This patch series contains the last 2 patches to complete moving runnable > code from Documentation to selftests, samples, and tools. > > The first patch moves blackfin gptimers-example to samples and removes > CONFIG_BUILD_DOCSRC. >

[PATCH 2/2] Doc: update 00-INDEX files to reflect the runnable code move

2016-09-26 Thread Shuah Khan
Update 00-INDEX files with the current file list to reflect the runnable code move. Signed-off-by: Shuah Khan --- Documentation/00-INDEX | 2 -- Documentation/arm/00-INDEX | 2 -- Documentation/filesystems/00-INDEX | 2 -- Documentation/networking/00-INDEX | 2

[PATCH 1/2] samples: move blackfin gptimers-example from Documentation

2016-09-26 Thread Shuah Khan
Makefile and lib/Kconfig.debug. Signed-off-by: Shuah Khan --- Documentation/Makefile| 1 - Documentation/blackfin/00-INDEX | 4 -- Documentation/blackfin/Makefile | 5 -- Documentation/blackfin/gptimers-example.c | 91

[PATCH 0/2] Moving runnable code from Documentation (last 2 patches)

2016-09-26 Thread Shuah Khan
move of runnable code from Documentation. Shuah Khan (2): samples: move blackfin gptimers-example from Documentation Doc: update 00-INDEX files to reflect the runnable code move Documentation/00-INDEX| 2 - Documentation/Makefile| 1 - Documentation

Re: [PATCH] samples: move blackfin gptimers-example from Documentation

2016-09-23 Thread Shuah Khan
On 09/23/2016 05:45 PM, Shuah Khan wrote: > Move blackfin gptimers-example to samples and remove the Documentation > Makefile. Update samples Kconfig and Makefile to build gptimers-example. > > Signed-off-by: Shuah Khan This patch isn't complete. CONFIG_BUILD_DOCSRC=1 m

[PATCH] samples: move blackfin gptimers-example from Documentation

2016-09-23 Thread Shuah Khan
Move blackfin gptimers-example to samples and remove the Documentation Makefile. Update samples Kconfig and Makefile to build gptimers-example. Signed-off-by: Shuah Khan --- Documentation/Makefile| 1 - Documentation/blackfin/00-INDEX | 4 -- Documentation

Re: [PATCH v2 0/3] Move runnable tools from Documentation to tools

2016-09-23 Thread Shuah Khan
On 09/22/2016 08:57 AM, Jonathan Corbet wrote: > On Wed, 21 Sep 2016 18:51:10 -0600 > Shuah Khan wrote: > >> Move runnable tools from Documentation to tools. I moved just the >> tools code, and left documentation files as is. >> >> Based on the v1 series feedback

[PATCH v2 1/3] tools: move accounting tool from Documentation

2016-09-21 Thread Shuah Khan
-off-by: Shuah Khan --- Documentation/Makefile| 2 +- Documentation/accounting/.gitignore | 1 - Documentation/accounting/Makefile | 7 - Documentation/accounting/delay-accounting.txt | 6 +- Documentation/accounting/getdelays.c | 550

[PATCH v2 2/3] tools: move laptops dslm tool from Documentation

2016-09-21 Thread Shuah Khan
Signed-off-by: Shuah Khan --- Documentation/Makefile| 2 +- Documentation/laptops/.gitignore | 1 - Documentation/laptops/00-INDEX| 4 - Documentation/laptops/Makefile| 5 - Documentation/laptops/dslm.c | 166

[PATCH v2 0/3] Move runnable tools from Documentation to tools

2016-09-21 Thread Shuah Khan
-rc1 Changes since v1: -- Move to tools instead of samples based on feedback -- Update location information and MAINTIANERS file as needed. Shuah Khan (3): tools: move accounting example code from Documentation tools: move laptops dslm tool from Documentation tools: move pcmcia crc32hash

[PATCH v2 3/3] tools: move pcmcia crc32hash tool from Documentation

2016-09-21 Thread Shuah Khan
; make Signed-off-by: Shuah Khan --- Documentation/Makefile | 3 +-- Documentation/pcmcia/.gitignore | 1 - Documentation/pcmcia/Makefile| 7 --- Documentation/pcmcia/crc32hash.c | 32 Documentation/pcmcia/devicetable.txt | 4

[PATCH v2 3/4] samples: move watchdog example code from Documentation

2016-09-21 Thread Shuah Khan
Move watchdog examples to samples and remove it from Documentation Makefile. Create a new Makefile to build watchdog. It can be built from top level directory or from watchdog directory: Run make -C samples/watchdog or cd samples/watchdog; make Signed-off-by: Shuah Khan --- Documentation

[PATCH v2 4/4] samples: move auxdisplay example code from Documentation

2016-09-21 Thread Shuah Khan
Move auxdisplay examples to samples and remove it from Documentation Makefile. Create a new Makefile to build auxdisplay. It can be built from top level directory or from auxdisplay directory: Run make -C samples/auxdisplay or cd samples/auxdisplay; make Signed-off-by: Shuah Khan

[PATCH v2 1/4] samples: move misc-devices/mei example code from Documentation

2016-09-21 Thread Shuah Khan
Corbet Signed-off-by: Shuah Khan --- Documentation/Makefile | 2 +- Documentation/misc-devices/Makefile | 1 - Documentation/misc-devices/mei/.gitignore| 1 - Documentation/misc-devices/mei/Makefile | 5 - Documentation/misc-devices

[PATCH v2 0/4] Move runnable examples code from Documentation to samples

2016-09-21 Thread Shuah Khan
timers, and misc-devices/mei Shuah Khan (4): samples: move misc-devices/mei example code from Documentation samples: move timers example code from Documentation samples: move watchdog example code from Documentation samples: move auxdisplay example code from Documentation Documentation

[PATCH v2 2/4] samples: move timers example code from Documentation

2016-09-21 Thread Shuah Khan
Move timers examples to samples and remove it from Documentation Makefile. Create a new Makefile to build timers. It can be built from top level directory or from timers directory: Run make -C samples/timers or cd samples/timers; make Acked-by: Jonathan Corbet Signed-off-by: Shuah Khan

Re: [PATCH 5/8] samples: move misc-devices/mei example code from Documentation

2016-09-20 Thread Shuah Khan
On 09/20/2016 12:17 AM, Winkler, Tomas wrote: > > >> -Original Message- >> From: Jonathan Corbet [mailto:cor...@lwn.net] >> Sent: Monday, September 19, 2016 19:14 >> To: Shuah Khan >> Cc: Dutt, Sudeep ; Dixit, Ashutosh >> ; Winkler, Tomas ;

Re: [PATCH 2/8] samples: move auxdisplay example code from Documentation

2016-09-20 Thread Shuah Khan
On 09/19/2016 10:05 AM, Jonathan Corbet wrote: > On Mon, 19 Sep 2016 08:47:33 -0600 > Shuah Khan wrote: > >> Move auxdisplay examples to samples and remove it from Documentation >> Makefile. Create a new Makefile to build auxdisplay. It can be built >> from top level d

Re: [PATCH 3/8] samples: move laptops example code from Documentation

2016-09-20 Thread Shuah Khan
On 09/19/2016 10:10 AM, Jonathan Corbet wrote: > On Mon, 19 Sep 2016 08:47:34 -0600 > Shuah Khan wrote: > >> Move laptops examples to samples and remove it from Documentation >> Makefile. Create a new Makefile to build laptops. It can be built >> from top leve

Re: [PATCH 1/8] samples: move accounting example code from Documentation

2016-09-20 Thread Shuah Khan
On 09/19/2016 10:02 AM, Jonathan Corbet wrote: > On Mon, 19 Sep 2016 08:47:32 -0600 > Shuah Khan wrote: > >> Move accounting examples to samples and remove it from Documentation >> Makefile. Create a new Makefile to build accounting. It can be built >> from top level d

[PATCH 1/8] samples: move accounting example code from Documentation

2016-09-19 Thread Shuah Khan
Move accounting examples to samples and remove it from Documentation Makefile. Create a new Makefile to build accounting. It can be built from top level directory or from accounting directory: Run make -C samples/accounting or cd samples/accounting; make Signed-off-by: Shuah Khan

[PATCH 6/8] samples: move pcmcia example code from Documentation

2016-09-19 Thread Shuah Khan
Move pcmcia examples to samples and remove it from Documentation Makefile. Create a new Makefile to build pcmcia. It can be built from top level directory or from pcmcia directory: Run make -C samples/pcmcia or cd samples/pcmcia; make Signed-off-by: Shuah Khan --- Documentation/Makefile

[PATCH 3/8] samples: move laptops example code from Documentation

2016-09-19 Thread Shuah Khan
Move laptops examples to samples and remove it from Documentation Makefile. Create a new Makefile to build laptops. It can be built from top level directory or from laptops directory: Run make -C samples/laptops or cd samples/laptops; make Signed-off-by: Shuah Khan --- Documentation/Makefile

[PATCH 5/8] samples: move misc-devices/mei example code from Documentation

2016-09-19 Thread Shuah Khan
Move misc-devices/mei examples to samples/mei and remove it from Documentation Makefile. Delete misc-devices/Makefile. Create a new Makefile to build samples/mei. It can be built from top level directory or from mei directory: Run make -C samples/mei or cd samples/mei; make Signed-off-by: Shuah

[PATCH 8/8] samples: move watchdog example code from Documentation

2016-09-19 Thread Shuah Khan
Move watchdog examples to samples and remove it from Documentation Makefile. Create a new Makefile to build watchdog. It can be built from top level directory or from watchdog directory: Run make -C samples/watchdog or cd samples/watchdog; make Signed-off-by: Shuah Khan --- Documentation

[PATCH 7/8] samples: move timers example code from Documentation

2016-09-19 Thread Shuah Khan
Move timers examples to samples and remove it from Documentation Makefile. Create a new Makefile to build timers. It can be built from top level directory or from timers directory: Run make -C samples/timers or cd samples/timers; make Signed-off-by: Shuah Khan --- Documentation/Makefile

[PATCH 0/8] Move runnable examples code from Documentation to samples

2016-09-19 Thread Shuah Khan
move which will be done another patch. Shuah Khan (8): samples: move accounting example code from Documentation samples: move auxdisplay example code from Documentation samples: move laptops example code from Documentation samples: move mic/mpssd example code from Documentation samples

[PATCH 2/8] samples: move auxdisplay example code from Documentation

2016-09-19 Thread Shuah Khan
Move auxdisplay examples to samples and remove it from Documentation Makefile. Create a new Makefile to build auxdisplay. It can be built from top level directory or from auxdisplay directory: Run make -C samples/auxdisplay or cd samples/auxdisplay; make Signed-off-by: Shuah Khan

[PATCH] selftests: Move networking/timestamping from Documentation

2016-09-15 Thread Shuah Khan
part of the effort to move runnable code from Documentation. Signed-off-by: Shuah Khan --- Documentation/Makefile | 3 +- Documentation/networking/Makefile | 1 - Documentation/networking/timestamping/.gitignore | 3 - Documentation/networking

Re: [PATCH v2 6/6] selftests: move watchdog tests from Documentation/watchdog

2016-09-13 Thread Shuah Khan
On 09/13/2016 02:33 PM, Timur Tabi wrote: > Shuah Khan wrote: >> Remove watchdog-test from Makefile to move the test to selftests. >> >> Add Makefile and .gitignore to for watchdog-test. watchdog-test will > > to for? Thanks - will fix that. > >> not be run

[PATCH v2 1/6] selftests: move dnotify_test from Documentation/filesystems

2016-09-13 Thread Shuah Khan
not be included in install targets. It can be built separately for now. Signed-off-by: Shuah Khan --- Documentation/Makefile | 2 +- Documentation/filesystems/.gitignore | 1 - Documentation/filesystems/Makefile | 5 Documentation

[PATCH v2 5/6] selftests: move ia64 tests from Documentation/ia64

2016-09-13 Thread Shuah Khan
this update doesn't change that. Signed-off-by: Shuah Khan --- Documentation/Makefile | 2 +- Documentation/ia64/.gitignore| 1 - Documentation/ia64/Makefile | 5 - Documentation/ia64/aliasing-test.c

[PATCH v2 6/6] selftests: move watchdog tests from Documentation/watchdog

2016-09-13 Thread Shuah Khan
Remove watchdog-test from Makefile to move the test to selftests. Add Makefile and .gitignore to for watchdog-test. watchdog-test will not be run as part of selftests suite and will not be included in install targets. It can be built separately for now. Signed-off-by: Shuah Khan

[PATCH v2 0/6] Move runnable code (tests) from Documentation to selftests

2016-09-13 Thread Shuah Khan
wider audience and people that responded with comments and ideas. - Included ia64 and watchdog which I missed in the v1 series. Shuah Khan (6): selftests: move dnotify_test from Documentation/filesystems selftests: move prctl tests from Documentation/prctl selftests: move ptp tests from Do

[PATCH v2 2/6] selftests: move prctl tests from Documentation/prctl

2016-09-13 Thread Shuah Khan
-by: Shuah Khan --- Documentation/Makefile | 2 +- Documentation/prctl/.gitignore | 3 - Documentation/prctl/Makefile | 10 --- .../prctl/disable-tsc-ctxt-sw-stress-test.c| 97 -- .../prctl/disable

[PATCH v2 4/6] selftests: move vDSO tests from Documentation/vDSO

2016-09-13 Thread Shuah Khan
Remove vDSO from Makefile to move the to selftests. Update vDSO Makefile to work under selftests. vDSO will not be run as part of selftests suite and will not be included in install targets. They can be built separately for now. Signed-off-by: Shuah Khan --- Documentation/Makefile

[PATCH v2 3/6] selftests: move ptp tests from Documentation/ptp

2016-09-13 Thread Shuah Khan
Remove ptp from Makefile to move the test to selftests. Update ptp Makefile to work under selftests. ptp will not be run as part of selftests suite and will not be included in install targets. They can be built separately for now. Signed-off-by: Shuah Khan --- Documentation/Makefile

Re: [PATCH 0/9] Move runnable code (tests) from Documentation to selftests

2016-09-13 Thread Shuah Khan
On 09/13/2016 03:20 AM, Jani Nikula wrote: > On Sat, 10 Sep 2016, Jonathan Corbet wrote: >> On Fri, 9 Sep 2016 16:22:41 -0600 >> Shuah Khan wrote: >> >>> Move runnable code (tests) from Documentation to selftests and update >>> Makefiles to work un

Re: [PATCH 2/9] selftests: update filesystems Makefile to work under selftests

2016-09-13 Thread Shuah Khan
On 09/13/2016 05:56 AM, Michael Ellerman wrote: > Shuah Khan writes: > >> Update to work under selftests. dnotify_test will not be run as part of >> selftests suite and will not included in install targets. It can be built >> separately for now. >> >> Signed-

[PATCH 4/9] selftests: move prctl tests from Documentation/prctl

2016-09-09 Thread Shuah Khan
Move prctl tests from Documentation/prctl to selftests/prctl. Signed-off-by: Shuah Khan --- Documentation/prctl/.gitignore | 3 - Documentation/prctl/Makefile | 10 --- .../prctl/disable-tsc-ctxt-sw-stress-test.c| 97

[PATCH 7/9] selftests: Update ptp Makefile to work under selftests

2016-09-09 Thread Shuah Khan
Update ptp Makefile to work under selftests. ptp will not be run as part of selftests suite and will not included in install targets. They can be built separately for now. Signed-off-by: Shuah Khan --- tools/testing/selftests/ptp/Makefile | 12 ++-- 1 file changed, 6 insertions(+), 6

  1   2   >