Message ID | 84b02b56d45792971cabf8ba832a9862fb20990e.1631731214.git.reinette.chatre@intel.com (mailing list archive) |
---|---|
State | New |
Headers | show |
Series | selftests/sgx: Oversubscription, page permission, thread entry | expand |
On Wed, 2021-09-15 at 13:30 -0700, Reinette Chatre wrote: > From: Sean Christopherson <sean.j.christopherson@intel.com> > > Pass a build id of "none" to the linker to suppress a warning about the > build id being ignored: > > /usr/bin/ld: warning: .note.gnu.build-id section discarded, --build-id > ignored. > > Link: https://lore.kernel.org/linux-sgx/20191017030340.18301-2-sean.j.christopherson@intel.com/ > Co-developed-by: Cedric Xing <cedric.xing@intel.com> > Signed-off-by: Cedric Xing <cedric.xing@intel.com> > Signed-off-by: Sean Christopherson <sean.j.christopherson@intel.com> > Signed-off-by: Reinette Chatre <reinette.chatre@intel.com> Reviewed-by: Jarkko Sakkinen <jarkko@kernel.org> /Jarkko
On Thu, 2021-09-16 at 17:38 +0300, Jarkko Sakkinen wrote: > On Wed, 2021-09-15 at 13:30 -0700, Reinette Chatre wrote: > > From: Sean Christopherson <sean.j.christopherson@intel.com> > > > > Pass a build id of "none" to the linker to suppress a warning about the > > build id being ignored: > > > > /usr/bin/ld: warning: .note.gnu.build-id section discarded, --build-id > > ignored. > > > > Link: https://lore.kernel.org/linux-sgx/20191017030340.18301-2-sean.j.christopherson@intel.com/ > > Co-developed-by: Cedric Xing <cedric.xing@intel.com> > > Signed-off-by: Cedric Xing <cedric.xing@intel.com> > > Signed-off-by: Sean Christopherson <sean.j.christopherson@intel.com> > > Signed-off-by: Reinette Chatre <reinette.chatre@intel.com> > > Reviewed-by: Jarkko Sakkinen <jarkko@kernel.org> ... but I don't get the use "co-developed-by" tag in this. I mean it's one line change. Maybe it should be "suggested-by"? /Jarkko
Hi Jarkko, On 9/16/2021 7:39 AM, Jarkko Sakkinen wrote: > On Thu, 2021-09-16 at 17:38 +0300, Jarkko Sakkinen wrote: >> On Wed, 2021-09-15 at 13:30 -0700, Reinette Chatre wrote: >>> From: Sean Christopherson <sean.j.christopherson@intel.com> >>> >>> Pass a build id of "none" to the linker to suppress a warning about the >>> build id being ignored: >>> >>> /usr/bin/ld: warning: .note.gnu.build-id section discarded, --build-id >>> ignored. >>> >>> Link: https://lore.kernel.org/linux-sgx/20191017030340.18301-2-sean.j.christopherson@intel.com/ >>> Co-developed-by: Cedric Xing <cedric.xing@intel.com> >>> Signed-off-by: Cedric Xing <cedric.xing@intel.com> >>> Signed-off-by: Sean Christopherson <sean.j.christopherson@intel.com> >>> Signed-off-by: Reinette Chatre <reinette.chatre@intel.com> >> >> Reviewed-by: Jarkko Sakkinen <jarkko@kernel.org> > > ... but I don't get the use "co-developed-by" tag in this. I mean > it's one line change. Maybe it should be "suggested-by"? I checked in with Cedric and he is ok with changing it to "Suggested-by". At this time I have the following signatures planned for this patch in the next version: Suggested-by: Cedric Xing <cedric.xing@intel.com> Signed-off-by: Sean Christopherson <sean.j.christopherson@intel.com> Reviewed-by: Jarkko Sakkinen <jarkko@kernel.org> Acked-by: Dave Hansen <dave.hansen@linux.intel.com> Signed-off-by: Reinette Chatre <reinette.chatre@intel.com> Reinette
diff --git a/tools/testing/selftests/sgx/Makefile b/tools/testing/selftests/sgx/Makefile index 7f12d55b97f8..2956584e1e37 100644 --- a/tools/testing/selftests/sgx/Makefile +++ b/tools/testing/selftests/sgx/Makefile @@ -45,7 +45,7 @@ $(OUTPUT)/sign_key.o: sign_key.S $(CC) $(HOST_CFLAGS) -c $< -o $@ $(OUTPUT)/test_encl.elf: test_encl.lds test_encl.c test_encl_bootstrap.S - $(CC) $(ENCL_CFLAGS) -T $^ -o $@ + $(CC) $(ENCL_CFLAGS) -T $^ -o $@ -Wl,--build-id=none EXTRA_CLEAN := \ $(OUTPUT)/test_encl.elf \