Re: [PATCH v2 0/5] Define _GNU_SOURCE for sources using

2024-05-09 Thread Muhammad Usama Anjum
On 5/9/24 10:45 PM, Edward Liaw wrote: > On Thu, May 9, 2024 at 7:37 AM Shuah Khan wrote: >> >> On 5/9/24 00:13, Edward Liaw wrote: >>> On Wed, May 8, 2024 at 4:10 PM Shuah Khan wrote: On 5/7/24 15:38, Edward Liaw wrote: > 809216233555 ("selftests/harness: remove use of LINE_MAX") i

Re: [PATCH v2 0/5] Define _GNU_SOURCE for sources using

2024-05-09 Thread Edward Liaw
On Thu, May 9, 2024 at 7:37 AM Shuah Khan wrote: > > On 5/9/24 00:13, Edward Liaw wrote: > > On Wed, May 8, 2024 at 4:10 PM Shuah Khan wrote: > >> > >> On 5/7/24 15:38, Edward Liaw wrote: > >>> 809216233555 ("selftests/harness: remove use of LINE_MAX") introduced > >>> asprintf into kselftest_har

Re: [PATCH v2 0/5] Define _GNU_SOURCE for sources using

2024-05-09 Thread Shuah Khan
On 5/9/24 00:13, Edward Liaw wrote: On Wed, May 8, 2024 at 4:10 PM Shuah Khan wrote: On 5/7/24 15:38, 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

Re: [PATCH v2 0/5] Define _GNU_SOURCE for sources using

2024-05-08 Thread Edward Liaw
On Wed, May 8, 2024 at 4:10 PM Shuah Khan wrote: > > On 5/7/24 15:38, 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 heade

Re: [PATCH v2 0/5] Define _GNU_SOURCE for sources using

2024-05-08 Thread Shuah Khan
On 5/7/24 15:38, 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 passed to the compiler. v1:

Re: [PATCH v2 0/5] Define _GNU_SOURCE for sources using

2024-05-08 Thread Edward Liaw
On Wed, May 8, 2024 at 6:47 AM Sean Christopherson wrote: > > On Tue, May 07, 2024, 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 i

Re: [PATCH v2 0/5] Define _GNU_SOURCE for sources using

2024-05-08 Thread Sean Christopherson
On Tue, May 07, 2024, 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 passed to the compi

Re: [PATCH v2 0/5] Define _GNU_SOURCE for sources using

2024-05-07 Thread Kees Cook
On Tue, May 07, 2024 at 09:38:25PM +, 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 v2 0/5] Define _GNU_SOURCE for sources using

2024-05-07 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. v1: https://lore.kernel.org/linux-kselftes