Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1309832 > unrolled thread

linux-next: manual merge of the luto-misc tree with Linus' tree

Started byStephen Rothwell <sfr@canb.auug.org.au>
First post2016-01-15 03:50 +0100
Last post2016-01-16 00:00 +0100
Articles 3 — 2 participants

Back to article view | Back to linux.kernel


Contents

  linux-next: manual merge of the luto-misc tree with Linus' tree Stephen Rothwell <sfr@canb.auug.org.au> - 2016-01-15 03:50 +0100
    Re: linux-next: manual merge of the luto-misc tree with Linus' tree Andy Lutomirski <luto@amacapital.net> - 2016-01-15 17:40 +0100
      Re: linux-next: manual merge of the luto-misc tree with Linus' tree Stephen Rothwell <sfr@canb.auug.org.au> - 2016-01-16 00:00 +0100

#1309832 — linux-next: manual merge of the luto-misc tree with Linus' tree

FromStephen Rothwell <sfr@canb.auug.org.au>
Date2016-01-15 03:50 +0100
Subjectlinux-next: manual merge of the luto-misc tree with Linus' tree
Message-ID<qR2CB-81R-3@gated-at.bofh.it>
Hi Andy,

Today's linux-next merge of the luto-misc tree got a conflict in:

  tools/testing/selftests/x86/Makefile

between commit:

  0f672809f91a ("selftests/x86: Disable the ldt_gdt_64 test for now")

from Linus' tree and commit:

  4b154c54fff1 ("x86/signal/64: Re-add support for SS in the 64-bit signal context")

from the luto-misc tree.

I fixed it up (see below) and can carry the fix as necessary (no action
is required).

-- 
Cheers,
Stephen Rothwell                    sfr@canb.auug.org.au

diff --cc tools/testing/selftests/x86/Makefile
index d0c473f65850,7d01da819d83..000000000000
--- a/tools/testing/selftests/x86/Makefile
+++ b/tools/testing/selftests/x86/Makefile
@@@ -4,11 -4,9 +4,11 @@@ include ../lib.m
  
  .PHONY: all all_32 all_64 warn_32bit_failure clean
  
- TARGETS_C_BOTHBITS := single_step_syscall sysret_ss_attrs syscall_nt ptrace_syscall
- TARGETS_C_32BIT_ONLY := entry_from_vm86 syscall_arg_fault sigreturn test_syscall_vdso unwind_vdso \
 -TARGETS_C_BOTHBITS := single_step_syscall sysret_ss_attrs ldt_gdt syscall_nt ptrace_syscall sigreturn
++TARGETS_C_BOTHBITS := single_step_syscall sysret_ss_attrs syscall_nt ptrace_syscall sigreturn
+ TARGETS_C_32BIT_ONLY := entry_from_vm86 syscall_arg_fault test_syscall_vdso unwind_vdso \
 -			test_FCMOV test_FCOMI test_FISTTP
 +			test_FCMOV test_FCOMI test_FISTTP \
 +			ldt_gdt \
 +			vdso_restorer
  
  TARGETS_C_32BIT_ALL := $(TARGETS_C_BOTHBITS) $(TARGETS_C_32BIT_ONLY)
  BINARIES_32 := $(TARGETS_C_32BIT_ALL:%=%_32)

[toc] | [next] | [standalone]


#1310262

FromAndy Lutomirski <luto@amacapital.net>
Date2016-01-15 17:40 +0100
Message-ID<qRfzQ-gk-23@gated-at.bofh.it>
In reply to#1309832
On Thu, Jan 14, 2016 at 6:45 PM, Stephen Rothwell <sfr@canb.auug.org.au> wrote:
> Hi Andy,
>
> Today's linux-next merge of the luto-misc tree got a conflict in:
>
>   tools/testing/selftests/x86/Makefile
>
> between commit:
>
>   0f672809f91a ("selftests/x86: Disable the ldt_gdt_64 test for now")
>
> from Linus' tree and commit:
>
>   4b154c54fff1 ("x86/signal/64: Re-add support for SS in the 64-bit signal context")
>
> from the luto-misc tree.
>
> I fixed it up (see below) and can carry the fix as necessary (no action
> is required).

This isn't quite correct.  I'll fix it up, since semantically it's
more a functionality change than a merge issue.

--Andy

>
> --
> Cheers,
> Stephen Rothwell                    sfr@canb.auug.org.au
>
> diff --cc tools/testing/selftests/x86/Makefile
> index d0c473f65850,7d01da819d83..000000000000
> --- a/tools/testing/selftests/x86/Makefile
> +++ b/tools/testing/selftests/x86/Makefile
> @@@ -4,11 -4,9 +4,11 @@@ include ../lib.m
>
>   .PHONY: all all_32 all_64 warn_32bit_failure clean
>
> - TARGETS_C_BOTHBITS := single_step_syscall sysret_ss_attrs syscall_nt ptrace_syscall
> - TARGETS_C_32BIT_ONLY := entry_from_vm86 syscall_arg_fault sigreturn test_syscall_vdso unwind_vdso \
>  -TARGETS_C_BOTHBITS := single_step_syscall sysret_ss_attrs ldt_gdt syscall_nt ptrace_syscall sigreturn
> ++TARGETS_C_BOTHBITS := single_step_syscall sysret_ss_attrs syscall_nt ptrace_syscall sigreturn
> + TARGETS_C_32BIT_ONLY := entry_from_vm86 syscall_arg_fault test_syscall_vdso unwind_vdso \
>  -                      test_FCMOV test_FCOMI test_FISTTP
>  +                      test_FCMOV test_FCOMI test_FISTTP \
>  +                      ldt_gdt \
>  +                      vdso_restorer
>
>   TARGETS_C_32BIT_ALL := $(TARGETS_C_BOTHBITS) $(TARGETS_C_32BIT_ONLY)
>   BINARIES_32 := $(TARGETS_C_32BIT_ALL:%=%_32)



-- 
Andy Lutomirski
AMA Capital Management, LLC

[toc] | [prev] | [next] | [standalone]


#1310518

FromStephen Rothwell <sfr@canb.auug.org.au>
Date2016-01-16 00:00 +0100
Message-ID<qRlvA-46b-13@gated-at.bofh.it>
In reply to#1310262
Hi Andy,

On Fri, 15 Jan 2016 08:34:25 -0800 Andy Lutomirski <luto@amacapital.net> wrote:
>
> This isn't quite correct.  I'll fix it up, since semantically it's
> more a functionality change than a merge issue.

OK, thanks.

-- 
Cheers,
Stephen Rothwell                    sfr@canb.auug.org.au

[toc] | [prev] | [standalone]


Back to top | Article view | linux.kernel


csiph-web