> From 15b830d4e877ed908c733ab3219801d1026af256 Mon Sep 17 00:00:00 2001 > From: Jan Kara <jack@xxxxxxx> > Date: Tue, 12 Mar 2019 10:38:19 +0100 > Subject: [PATCH] ext4: Avoid panic during forced reboot > > When admin calls "reboot -f" - i.e., does a hard system reboot by > directly calling reboot(2) - ext4 filesystem mounted with errors=panic > can panic the system. This happens because the underlying device gets > disabled without unmounting the filesystem and thus some syscall running > in parallel to reboot(2) can result in the filesystem getting IO errors. > > This is somewhat surprising to the users so try improve the behavior by > switching to errors=remount-ro behavior when the system is running > reboot(2). > > Signed-off-by: Jan Kara <jack@xxxxxxx> Looks good to me; thanks, applied. - Ted