ashmem: Implement read(2) in ashmem driver
authorBjorn Bringert <[email protected]>
Wed, 21 Dec 2011 00:49:49 +0000 (16:49 -0800)
committerGreg Kroah-Hartman <[email protected]>
Wed, 21 Dec 2011 21:40:22 +0000 (13:40 -0800)
Signed-off-by: Bjorn Bringert <[email protected]>
[jstultz: Tweaked commit subject]
CC: Brian Swetland <[email protected]>
CC: Colin Cross <[email protected]>
CC: Arve Hjønnevåg <[email protected]>
CC: Dima Zavin <[email protected]>
CC: Robert Love <[email protected]>
Signed-off-by: John Stultz <[email protected]>
Signed-off-by: Greg Kroah-Hartman <[email protected]>
drivers/staging/android/ashmem.c

index 5775c6c779c52d2173f5c1571609029aa7b591d7..6f1a0bbc9a5e5a6fc703c4f20829fbf0ecde9c2e 100644 (file)
@@ -211,6 +211,32 @@ static int ashmem_release(struct inode *ignored, struct file *file)
        return 0;
 }
 
+static ssize_t ashmem_read(struct file *file, char __user *buf,
+                          size_t len, loff_t *pos)
+{
+       struct ashmem_area *asma = file->private_data;
+       int ret = 0;
+
+       mutex_lock(&ashmem_mutex);
+
+       /* If size is not set, or set to 0, always return EOF. */
+       if (asma->size == 0) {
+               goto out;
+        }
+
+       if (!asma->file) {
+               ret = -EBADF;
+               goto out;
+       }
+
+       ret = asma->file->f_op->read(asma->file, buf, len, pos);
+
+out:
+       mutex_unlock(&ashmem_mutex);
+       return ret;
+}
+
+
 static int ashmem_mmap(struct file *file, struct vm_area_struct *vma)
 {
        struct ashmem_area *asma = file->private_data;
@@ -612,6 +638,7 @@ static struct file_operations ashmem_fops = {
        .owner = THIS_MODULE,
        .open = ashmem_open,
        .release = ashmem_release,
+        .read = ashmem_read,
        .mmap = ashmem_mmap,
        .unlocked_ioctl = ashmem_ioctl,
        .compat_ioctl = ashmem_ioctl,