drm-shim: Return -EINVAL instead of abort()ing on unknown ioctls.
authorEric Anholt <eric@anholt.net>
Mon, 20 Jul 2020 18:21:36 +0000 (11:21 -0700)
committerMarge Bot <eric+marge@anholt.net>
Thu, 30 Jul 2020 19:59:20 +0000 (19:59 +0000)
commit75b1f3d39df4f098b3674adee52a9db41c1fa96a
tree85ac37b47a4dd51198c2f467c10ff6a21b5fdd55
parentc77a414ec2d3cfde3783300afcf59e4f87826b82
drm-shim: Return -EINVAL instead of abort()ing on unknown ioctls.

I had this as abort() in my original implementation since I was doing
drm-shim and my kernel driver in parallel based around using a SW
simulator, and I wanted to always update both, but it means that people's
new feature detection code can easily end up breaing their drm-shim
shader-db runs (such as intel's kernel_has_dynamic_config_support()
checking for -ENOENT instead of -EINVAL for a feature, which showed up on
my personal runner but not fd.o's for reasons I'm unclear on).

Reviewed-by: Lionel Landwerlin <lionel.g.landwerlin@intel.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/5994>
src/drm-shim/device.c