aboutsummaryrefslogtreecommitdiffstats
path: root/include/drm/drmP.h
diff options
context:
space:
mode:
authorDaniel Vetter <daniel.vetter@ffwll.ch>2013-08-08 09:41:23 -0400
committerDave Airlie <airlied@redhat.com>2013-08-18 20:05:17 -0400
commitb0e898ac555e96e7863a5ee95d70f3625f1db5e2 (patch)
tree6b2b00af9c5368b068b0c77d58fff1f1990f311b /include/drm/drmP.h
parent5bbd533248f653fcfd8de0f1202e2c67d8f884a4 (diff)
drm: remove FASYNC support
So I've stumbled over drm_fasync and wondered what it does. Digging that up is quite a story. First I've had to read up on what this does and ended up being rather bewildered why peopled loved signals so much back in the days that they've created SIGIO just for that ... Then I wondered how this ever works, and what that strange "No-op." comment right above it should mean. After all calling the core fasync helper is pretty obviously not a noop. After reading through the kernels FASYNC implementation I've noticed that signals are only sent out to the processes attached with FASYNC by calling kill_fasync. No merged drm driver has ever done that. After more digging I've found out that the only driver that ever used this is the so called GAMMA driver. I've frankly never heard of such a gpu brand ever before. Now FASYNC seems to not have been the only bad thing with that driver, since Dave Airlie removed it from the drm driver with prejudice: commit 1430163b4bbf7b00367ea1066c1c5fe85dbeefed Author: Dave Airlie <airlied@linux.ie> Date: Sun Aug 29 12:04:35 2004 +0000 Drop GAMMA DRM from a great height ... Long story short, the drm fasync support seems to be doing absolutely nothing. And the only user of it was never merged into the upstream kernel. And we don't need any fops->fasync callback since the fcntl implementation in the kernel already implements the noop case correctly. So stop this particular cargo-cult and rip it all out. v2: Kill drm_fasync assignments in rcar (newly added) and imx drivers (somehow I've missed that one in staging). Also drop the reference in the drm DocBook. ARM compile-fail reported by Rob Clark. v3: Move the removal of dev->buf_asnyc assignment in drm_setup to this patch here. v4: Actually git add ... tsk. Cc: Dave Airlie <airlied@linux.ie> Cc: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Cc: Rob Clark <robdclark@gmail.com> Acked-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch> Reviewed-by: David Herrmann <dh.herrmann@gmail.com> Signed-off-by: Dave Airlie <airlied@redhat.com>
Diffstat (limited to 'include/drm/drmP.h')
-rw-r--r--include/drm/drmP.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/include/drm/drmP.h b/include/drm/drmP.h
index 277f307e053d..cef9a507246e 100644
--- a/include/drm/drmP.h
+++ b/include/drm/drmP.h
@@ -1166,8 +1166,6 @@ struct drm_device {
1166 1166
1167 /*@} */ 1167 /*@} */
1168 1168
1169 struct fasync_struct *buf_async;/**< Processes waiting for SIGIO */
1170
1171 struct drm_agp_head *agp; /**< AGP data */ 1169 struct drm_agp_head *agp; /**< AGP data */
1172 1170
1173 struct device *dev; /**< Device structure */ 1171 struct device *dev; /**< Device structure */
@@ -1264,7 +1262,6 @@ extern int drm_lastclose(struct drm_device *dev);
1264extern struct mutex drm_global_mutex; 1262extern struct mutex drm_global_mutex;
1265extern int drm_open(struct inode *inode, struct file *filp); 1263extern int drm_open(struct inode *inode, struct file *filp);
1266extern int drm_stub_open(struct inode *inode, struct file *filp); 1264extern int drm_stub_open(struct inode *inode, struct file *filp);
1267extern int drm_fasync(int fd, struct file *filp, int on);
1268extern ssize_t drm_read(struct file *filp, char __user *buffer, 1265extern ssize_t drm_read(struct file *filp, char __user *buffer,
1269 size_t count, loff_t *offset); 1266 size_t count, loff_t *offset);
1270extern int drm_release(struct inode *inode, struct file *filp); 1267extern int drm_release(struct inode *inode, struct file *filp);