Re: [PATCH v2] kdb: Make the internal env 'KDBFLAGS' undefinable

2020-05-19 Thread liwei (GF)
Hi Daniel, On 2020/5/19 19:40, Daniel Thompson wrote: > On Sat, May 16, 2020 at 05:26:06PM +0800, Wei Li wrote: >> 'KDBFLAGS' is an internal variable of kdb, it is combined by 'KDBDEBUG' >> and state flags. But the user can define an environment variable named >> 'KDBFLAGS' too, so let's make it u

Re: [PATCH v2] kdb: Make the internal env 'KDBFLAGS' undefinable

2020-05-19 Thread Daniel Thompson
On Sat, May 16, 2020 at 05:26:06PM +0800, Wei Li wrote: > 'KDBFLAGS' is an internal variable of kdb, it is combined by 'KDBDEBUG' > and state flags. But the user can define an environment variable named > 'KDBFLAGS' too, so let's make it undefinable to avoid confusion. > > Signed-off-by: Wei Li >

[PATCH v2] kdb: Make the internal env 'KDBFLAGS' undefinable

2020-05-16 Thread Wei Li
'KDBFLAGS' is an internal variable of kdb, it is combined by 'KDBDEBUG' and state flags. But the user can define an environment variable named 'KDBFLAGS' too, so let's make it undefinable to avoid confusion. Signed-off-by: Wei Li Reviewed-by: Douglas Anderson --- v1 -> v2: - Fix lack of braces.