Re: [PATCH] tty/vt: don't set font mappings on vc not supporting this

2015-09-20 Thread Sudip Mukherjee
On Sun, Sep 20, 2015 at 06:40:15PM -0700, Greg Kroah-Hartman wrote: > On Sun, Sep 13, 2015 at 11:33:51AM +0530, Sudip Mukherjee wrote: > > commit 9e326f78713a4421fe11afc2ddeac07698fac131 upstream > > Cc: # 3.14.x > > Signed-off-by: Sudip Mukherjee > > --- > > > > backporting for the first time

Re: [PATCH] tty/vt: don't set font mappings on vc not supporting this

2015-09-20 Thread Greg Kroah-Hartman
On Sun, Sep 13, 2015 at 11:33:51AM +0530, Sudip Mukherjee wrote: > commit 9e326f78713a4421fe11afc2ddeac07698fac131 upstream > > We can call this function for a dummy console that doesn't support > setting the font mapping, which will result in a null ptr BUG. So check > for this case and return er

[PATCH] tty/vt: don't set font mappings on vc not supporting this

2015-09-12 Thread Sudip Mukherjee
commit 9e326f78713a4421fe11afc2ddeac07698fac131 upstream We can call this function for a dummy console that doesn't support setting the font mapping, which will result in a null ptr BUG. So check for this case and return error for consoles w/o font mapping support. Cc: # 3.14.x Signed-off-by: Su

[PATCH] tty/vt: don't set font mappings on vc not supporting this

2014-10-02 Thread Imre Deak
We can call this function for a dummy console that doesn't support setting the font mapping, which will result in a null ptr BUG. So check for this case and return error for consoles w/o font mapping support. Reference: https://bugzilla.kernel.org/show_bug.cgi?id=59321 Signed-off-by: Imre Deak --