On 06/19/2013 11:23:51 AM, Li Wang wrote:
This patch implements punch hole (fallocate) support for Ceph.

Signed-off-by: Li Wang <liw...@ubuntukylin.com>
Signed-off-by: Yunchuan Wen <wenyunch...@ubuntukylin.com>

+static int ceph_delete_object(struct inode *inode, u64 offset, u64 *length)
+{
+       struct ceph_inode_info *ci = ceph_inode(inode);
+    struct ceph_fs_client *fsc = ceph_inode_to_client(inode);  
+       struct ceph_osd_request *req;

Mixing tabs and spaces.


+static int ceph_punch_hole(struct file *file, loff_t offset, loff_t length)
+{
+       struct inode *inode = file->f_dentry->d_inode;
+       int ret = 0;
+
+    if (!S_ISREG(inode->i_mode)) {
+        return -EOPNOTSUPP;
+       }

And again.

Rob--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Reply via email to