Message ID | 572911BF.8000803@hurleysoftware.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
* Peter Hurley <peter@hurleysoftware.com> [160503 14:03]: > Hi Tony, > > On 05/03/2016 01:39 PM, Tony Lindgren wrote: > > Hi Peter, > > > > Looks like probably commit 4047b37122d1 ("serial: core: Prevent unsafe > > uart port access, part 1") in Linux next causes tons of warnings with at > > least omap-serial. It does not revert cleanly I have not tested with that > > reverted. Any ideas? Dmesg output of the errors below. > > Thanks for the report. > Patch below should fix that. Yes thanks that fixes it: Tested-by: Tony Lindgren <tony@atomide.com> -- To unsubscribe from this list: send the line "unsubscribe linux-omap" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
diff --git a/drivers/tty/serial/serial_core.c b/drivers/tty/serial/serial_core.c index 0e66923..b88a054 100644 --- a/drivers/tty/serial/serial_core.c +++ b/drivers/tty/serial/serial_core.c @@ -95,9 +95,7 @@ static inline void uart_port_deref(struct uart_port *uport) static inline struct uart_port *uart_port_check(struct uart_state *state) { -#ifdef CONFIG_LOCKDEP - WARN_ON(!lockdep_is_held(&state->port.mutex)); -#endif + lockdep_assert_held(&state->port.mutex); return state->uart_port; }