From mboxrd@z Thu Jan 1 00:00:00 1970 From: arnd@arndb.de (Arnd Bergmann) Date: Mon, 8 Apr 2013 21:38:15 +0200 Subject: [RFC PATCH arm: initial TI-Nspire support] In-Reply-To: References: <6FE4B33E-A503-4A75-AEED-831CB2C06D83@gmail.com> <896CB251-17FC-4327-BA4E-A8FD9ED1BEC7@gmail.com> Message-ID: <201304082138.15875.arnd@arndb.de> To: linux-arm-kernel@lists.infradead.org List-Id: linux-arm-kernel.lists.infradead.org On Monday 08 April 2013, Fabian Vogt wrote: > The latest kernel it seems to get stuck at > console_lock() in register_framebuffer (drivers/video/fbmem.c:1655) > if the LCD-controller is enabled. (Early printk and serial console works > fine) > CONFIG_NO_HZ is not activated, it works completely. > Could this be a kernel bug or is this an issue with our timer > configuration? This usually happens when the console driver or anything it uses calls a function that does a printk(), which means you get a recursive call into the console code and try to get the same lock again. Arnd