Re: [PATCH] xfs: Use WARN_ON_ONCE rather than BUG for bailout mount-operation

2019-08-29 Thread Austin Kim
2019년 8월 30일 (금) 오전 9:33, Darrick J. Wong 님이 작성: > > On Fri, Aug 30, 2019 at 09:30:22AM +0900, Austin Kim wrote: > > If the CONFIG_BUG is enabled, BUG is executed and then system is crashed. > > However, the bailout for mount is no longer proceeding. > > > > For this reason, using WARN_ON_ONCE rath

Re: [PATCH] xfs: Use WARN_ON_ONCE rather than BUG for bailout mount-operation

2019-08-29 Thread Darrick J. Wong
On Fri, Aug 30, 2019 at 09:30:22AM +0900, Austin Kim wrote: > If the CONFIG_BUG is enabled, BUG is executed and then system is crashed. > However, the bailout for mount is no longer proceeding. > > For this reason, using WARN_ON_ONCE rather than BUG can prevent this > situation. > > Signed-off-b