serial8250_em485_init() is supposed to be protected with
p->port.lock spinlock.
This may lead to issues when kmalloc sleeps, so it is better to use
GFP_ATOMIC in this spinlocked context.
Fixes: e490c9144cfa ("tty: Add software emulated RS485 support for 8250")
Reported-by: Ильяс Гасанов <torso.nafi@gmail.com>
Signed-off-by: Matwey V. Kornilov <matwey@sai.msu.ru>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
        if (p->em485 != NULL)
                return 0;
 
-       p->em485 = kmalloc(sizeof(struct uart_8250_em485), GFP_KERNEL);
+       p->em485 = kmalloc(sizeof(struct uart_8250_em485), GFP_ATOMIC);
        if (p->em485 == NULL)
                return -ENOMEM;