Re: [PATCH v1 00/10] Define _GNU_SOURCE for sources using

2024-05-07 Thread Edward Liaw
On Tue, Apr 30, 2024 at 10:41 PM Muhammad Usama Anjum wrote: > > Thanks for the fixes. > > On 5/1/24 6:59 AM, Mark Brown wrote: > > On Tue, Apr 30, 2024 at 11:50:09PM +, Edward Liaw wrote: > >> 809216233555 ("selftests/harness: remove use of LINE_MAX") introduced > >> asprintf into kselftest_h

Re: [PATCH v1 00/10] Define _GNU_SOURCE for sources using

2024-05-02 Thread Kees Cook
On Wed, May 01, 2024 at 06:24:36AM -0700, Sean Christopherson wrote: > On Wed, May 01, 2024, Mark Brown wrote: > > On Tue, Apr 30, 2024 at 11:50:09PM +, Edward Liaw wrote: > > > 809216233555 ("selftests/harness: remove use of LINE_MAX") introduced > > > asprintf into kselftest_harness.h, which

Re: [PATCH v1 00/10] Define _GNU_SOURCE for sources using

2024-05-01 Thread Sean Christopherson
On Wed, May 01, 2024, Mark Brown wrote: > On Tue, Apr 30, 2024 at 11:50:09PM +, Edward Liaw wrote: > > 809216233555 ("selftests/harness: remove use of LINE_MAX") introduced > > asprintf into kselftest_harness.h, which is a GNU extension and needs > > _GNU_SOURCE to either be defined prior to in

Re: [PATCH v1 00/10] Define _GNU_SOURCE for sources using

2024-04-30 Thread Muhammad Usama Anjum
Thanks for the fixes. On 5/1/24 6:59 AM, Mark Brown wrote: > On Tue, Apr 30, 2024 at 11:50:09PM +, Edward Liaw wrote: >> 809216233555 ("selftests/harness: remove use of LINE_MAX") introduced >> asprintf into kselftest_harness.h, which is a GNU extension and needs >> _GNU_SOURCE to either be de

Re: [PATCH v1 00/10] Define _GNU_SOURCE for sources using

2024-04-30 Thread Mark Brown
On Tue, Apr 30, 2024 at 11:50:09PM +, Edward Liaw wrote: > 809216233555 ("selftests/harness: remove use of LINE_MAX") introduced > asprintf into kselftest_harness.h, which is a GNU extension and needs > _GNU_SOURCE to either be defined prior to including headers or with the > -D_GNU_SOURCE flag

[PATCH v1 00/10] Define _GNU_SOURCE for sources using

2024-04-30 Thread Edward Liaw
809216233555 ("selftests/harness: remove use of LINE_MAX") introduced asprintf into kselftest_harness.h, which is a GNU extension and needs _GNU_SOURCE to either be defined prior to including headers or with the -D_GNU_SOURCE flag passed to the compiler. Edward Liaw (10): selftests/sgx: Compile