Re: [PATCH 1/3] pstore: add multi-backend support

2024-02-20 Thread Yuanhe Shu
On 2024/2/7 20:48, Kees Cook wrote: On Wed, Feb 07, 2024 at 10:19:19AM +0800, Yuanhe Shu wrote: Currently, pstore supports only one backend open at a time. Specifically, due to the global variable "psinfo", pstore only accepts the first registered backend. If a new backend wants to register

Re: [PATCH 1/3] pstore: add multi-backend support

2024-02-07 Thread Kees Cook
On Wed, Feb 07, 2024 at 10:19:19AM +0800, Yuanhe Shu wrote: > Currently, pstore supports only one backend open at a time. > Specifically, due to the global variable "psinfo", pstore only accepts > the first registered backend. If a new backend wants to register later, > pstore will simply reject

[PATCH 1/3] pstore: add multi-backend support

2024-02-06 Thread Yuanhe Shu
Currently, pstore supports only one backend open at a time. Specifically, due to the global variable "psinfo", pstore only accepts the first registered backend. If a new backend wants to register later, pstore will simply reject it and return an error. This design forced us to close existing

Re: [PATCH 1/3] pstore: add multi-backend support

2024-02-06 Thread kernel test robot
base: https://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/pstore patch link: https://lore.kernel.org/r/20240205122852.7069-2-xiangzao%40linux.alibaba.com patch subject: [PATCH 1/3] pstore: add multi-backend support config: i386-buildonly-randconfig-004-20240206 (https

[PATCH 1/3] pstore: add multi-backend support

2024-02-06 Thread Yuanhe Shu
Currently, pstore supports only one backend open at a time. Specifically, due to the global variable "psinfo", pstore only accepts the first registered backend. If a new backend wants to register later, pstore will simply reject it and return an error. This design forced us to close existing

Re: [PATCH 1/3] pstore: add multi-backend support

2024-02-06 Thread kernel test robot
base: https://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/pstore patch link: https://lore.kernel.org/r/20240205122852.7069-2-xiangzao%40linux.alibaba.com patch subject: [PATCH 1/3] pstore: add multi-backend support config: csky-randconfig-r071-20240206 (https://download.01

[PATCH 1/3] pstore: add multi-backend support

2024-02-05 Thread Yuanhe Shu
Currently, pstore supports only one backend open at a time. Specifically, due to the global variable "psinfo", pstore only accepts the first registered backend. If a new backend wants to register later, pstore will simply reject it and return an error. This design forced us to close existing