Message ID | 20220212104349.14266-2-lecopzer.chen@mediatek.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | Support hld based on Pseudo-NMI for arm64 | expand |
On Sat 2022-02-12 18:43:45, Lecopzer Chen wrote: > No reference to WATCHDOG_DEFAULT, remove it. It would be enough to mention the link to the previous version in the cover letter. > this commit reworks from [1]. > > [1] https://lore.kernel.org/lkml/20211014024155.15253-2-kernelfans@gmail.com/ > Signed-off-by: Pingfan Liu <kernelfans@gmail.com> > Signed-off-by: Lecopzer Chen <lecopzer.chen@mediatek.com> Reviewed-by: Petr Mladek <pmladek@suse.com> Best Regards, Petr
> On Sat 2022-02-12 18:43:45, Lecopzer Chen wrote: > > No reference to WATCHDOG_DEFAULT, remove it. > > It would be enough to mention the link to the previous > version in the cover letter. Thanks, I'll tweak the commit message in next version patch. > > > this commit reworks from [1]. > > > > [1] https://lore.kernel.org/lkml/20211014024155.15253-2-kernelfans@gmail.com/ > > Signed-off-by: Pingfan Liu <kernelfans@gmail.com> > > Signed-off-by: Lecopzer Chen <lecopzer.chen@mediatek.com> > > Reviewed-by: Petr Mladek <pmladek@suse.com> BRs, Lecopzer
diff --git a/kernel/watchdog.c b/kernel/watchdog.c index 99afb88d2e85..db451e943a04 100644 --- a/kernel/watchdog.c +++ b/kernel/watchdog.c @@ -30,10 +30,8 @@ static DEFINE_MUTEX(watchdog_mutex); #if defined(CONFIG_HARDLOCKUP_DETECTOR) || defined(CONFIG_HAVE_NMI_WATCHDOG) -# define WATCHDOG_DEFAULT (SOFT_WATCHDOG_ENABLED | NMI_WATCHDOG_ENABLED) # define NMI_WATCHDOG_DEFAULT 1 #else -# define WATCHDOG_DEFAULT (SOFT_WATCHDOG_ENABLED) # define NMI_WATCHDOG_DEFAULT 0 #endif