data protection regulation)
Thank you for taking care of this.
Reviewed-by: Shuah Khan
thanks,
-- Shuah
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
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
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
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
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
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
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
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
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
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
rfs-progs0.18 btrfsck
+btrfs-progs0.18 btrfs --version
pcmciautils004 pccardctl -V
quota-tools3.09 quota -V
PPP2.4.0pppd --version
thanks,
-- Shuah
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
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
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
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
---
base-commit: cea5425829f77e476b03702426f6b3701299b925
change-id: 20241001-kselftest-device-docs-6c8a411109b5
Best regards,
thanks,
-- Shuah
50ba
change-id: 20240903-documentation-b4-advert-18016e83d7d9
Best regards,
Looks good to me. Thanks for the update.
Reviewed-by: Shuah Khan
thanks,
-- Shuah
ce for the most part for work stemming from
discussions at conferences such as LPC.
Reviewed-by: Shuah Khan
thanks,
-- 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
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
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
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
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
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
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
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
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
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
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
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
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 "<>"
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 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
mentees.
I will add this to it.
thanks,
-- Shuah
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
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
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
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
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
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
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
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
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
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:
>>&
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
> 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
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
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.
>>>
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
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
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
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
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 +
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
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
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
: 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
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
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.
>
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
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
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
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
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
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
-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
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
-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
; 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
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
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
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
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
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
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 ;
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
-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
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
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
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
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-
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
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 - 100 of 110 matches
Mail list logo