um: Don't garbage collect in deactivate_all_fds()
authorJohannes Berg <johannes.berg@intel.com>
Fri, 24 May 2019 20:02:44 +0000 (22:02 +0200)
committerRichard Weinberger <richard@nod.at>
Tue, 2 Jul 2019 21:27:19 +0000 (23:27 +0200)
commitc7f04e87e444a4bdeced1b43ce961d31257414ab
treeebddb5af2e6c1a120e793d8a52539c48d4648e8f
parent80bf6ceaf9310b3f61934c69b382d4912deee049
um: Don't garbage collect in deactivate_all_fds()

My previous commit didn't actually address the whole issue with
lockdep shutdown, I had another local modification that disabled
lockdep but that wasn't sufficient alone, so had to do the other
change.

Another issue remained though - during kfree() we acquire locks
and lockdep tries to annotate those with exactly the same issue
in the other patch - we no longer have "current".

So, just remove the garbage collection. There's no value in it
anyway since we're going to shut down anyway and marking a slab
object as free is now not very useful anymore.

Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Signed-off-by: Richard Weinberger <richard@nod.at>
arch/um/kernel/irq.c