From: Arnd Bergmann Date: Thu, 21 May 2009 22:04:16 +0000 (+0000) Subject: compat_ioctl: inline all conversion handlers X-Git-Tag: v2.6.33-rc1~300^2~5 X-Git-Url: http://ftp.safe.ca/?a=commitdiff_plain;h=5a07ea0b97f206ed23a5850079b7f322e7730869;hp=5a07ea0b97f206ed23a5850079b7f322e7730869;p=safe%2Fjmp%2Flinux-2.6 compat_ioctl: inline all conversion handlers This makes all ioctl conversion handlers called from a single switch statement, leaving only COMPATIBLE_IOCTL and ULONG_IOCTL statements in the table. This is somewhat more space efficient and also lets us simplify the handling of the lookup table significantly. before: text data bss dec hex filename 7619 14024 2080 23723 5cab obj/fs/compat_ioctl.o after: 7567 13352 2080 22999 59d7 obj/fs/compat_ioctl.o Signed-off-by: Arnd Bergmann ---