Re: [GIT PULL] ARC updates for 5.1-rc2

2019-03-20 Thread pr-tracker-bot
The pull request you sent on Tue, 19 Mar 2019 14:58:03 -0700: > git://git.kernel.org/pub/scm/linux/kernel/git/vgupta/arc.git/ tags/arc-5.1-rc2 has been merged into torvalds/linux.git: https://git.kernel.org/torvalds/c/54c490164523de90c42b1d89e7de3befe3284d1b Thank you! -- Deet-doot-dot, I am a

Re: [PATCH v2] autodetect fts support and tests depending on it

2019-03-20 Thread Petr Vorel
Hi Vineet, > Signed-off-by: Vineet Gupta > --- > configure.ac | 1 + > testcases/kernel/controllers/Makefile | 6 ++ > 2 files changed, 7 insertions(+) > diff --git a/configure.ac b/configure.ac > index e002c248eab2..10b2f6b1e43b 100644 > --- a/configure.ac > +++ b/

Re: [LTP] [PATCH v2] autodetect fts support and tests depending on it

2019-03-20 Thread Petr Vorel
Hi Vineet, > > Signed-off-by: Vineet Gupta > > --- > > configure.ac | 1 + > > testcases/kernel/controllers/Makefile | 6 ++ > > 2 files changed, 7 insertions(+) > > diff --git a/configure.ac b/configure.ac > > index e002c248eab2..10b2f6b1e43b 100644 > > --- a/confi

Re: [PATCH] auto filter aio tests of libc can't support aio

2019-03-20 Thread Petr Vorel
Hi Vineet, > uClibc-ng lacks libaio.h and thus LTP UCLIBC=1 builds need to filter > out aio tests which it currently doesn't. > FWIW the tests sources themselves use a slightly different guard > HAVE_LIBAIO (while autotool generate HAVE_LIBAIO_H). > Anyhow that seems pointless as aio tests should

Re: [PATCH] [ARC] don't force _init/_fini as DT_INIT/DT_FINI

2019-03-20 Thread Vineet Gupta
Hi, On 2/4/19 6:52 AM, Claudiu Zissulescu wrote: > Hi, > >> bfd/ >> 2019-02-01 Vineet Gupta >> >>* elf32-arc.c: Delete init_str, fini_str >> >> ld/ >> 2019-02-01 Vineet Gupta >> >>* emultempl/arclinux.em : Delete special INIT/FINI handling. >> >> Signed-off-by:

Re: [PATCH] [ARC] don't force _init/_fini as DT_INIT/DT_FINI

2019-03-20 Thread Vineet Gupta
Hi Claudiu, On 2/4/19 6:52 AM, Claudiu Zissulescu wrote: > Hi, > >> bfd/ >> 2019-02-01 Vineet Gupta >> >>* elf32-arc.c: Delete init_str, fini_str >> >> ld/ >> 2019-02-01 Vineet Gupta >> >>* emultempl/arclinux.em : Delete special INIT/FINI handling. >> >> Signed

Re: [PATCH v2] autodetect fts support and tests depending on it

2019-03-20 Thread Vineet Gupta
Hi Petr, On 3/20/19 3:37 PM, Petr Vorel wrote: > >> +# controllers/cpuset/cpuset_lib/libcpuset.c uses fts >> +# which may not be available/configured in the libc build >> +ifndef HAVE_FTS_H >> +FILTER_OUT_DIRS += cpuset >> +endif > Have you tested it? Absolutely. I verified again. With this

Re: [PATCH v2 02/13] arc: define syscall_get_arch()

2019-03-20 Thread Paul Moore
On Sun, Mar 17, 2019 at 7:28 PM Dmitry V. Levin wrote: > > syscall_get_arch() is required to be implemented on all architectures > in addition to already implemented syscall_get_nr(), > syscall_get_arguments(), syscall_get_error(), and > syscall_get_return_value() functions in order to extend the

Re: [PATCH v2 01/13] Move EM_ARCOMPACT and EM_ARCV2 to uapi/linux/elf-em.h

2019-03-20 Thread Paul Moore
On Sun, Mar 17, 2019 at 7:28 PM Dmitry V. Levin wrote: > > These should never have been defined in the arch tree to begin with, and > now uapi/linux/audit.h header is going to use EM_ARCOMPACT and EM_ARCV2 > in order to define AUDIT_ARCH_ARCOMPACT and AUDIT_ARCH_ARCV2 which are > needed to impleme

Re: [PATCH v2 13/13] syscall_get_arch: add "struct task_struct *" argument

2019-03-20 Thread Paul Moore
On Sun, Mar 17, 2019 at 7:30 PM Dmitry V. Levin wrote: > > This argument is required to extend the generic ptrace API with > PTRACE_GET_SYSCALL_INFO request: syscall_get_arch() is going > to be called from ptrace_request() along with syscall_get_nr(), > syscall_get_arguments(), syscall_get_error()