Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * file.c |
| 3 | * |
| 4 | * PURPOSE |
| 5 | * File handling routines for the OSTA-UDF(tm) filesystem. |
| 6 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7 | * COPYRIGHT |
| 8 | * This file is distributed under the terms of the GNU General Public |
| 9 | * License (GPL). Copies of the GPL can be obtained from: |
| 10 | * ftp://prep.ai.mit.edu/pub/gnu/GPL |
| 11 | * Each contributing author retains all rights to their own work. |
| 12 | * |
| 13 | * (C) 1998-1999 Dave Boynton |
| 14 | * (C) 1998-2004 Ben Fennema |
| 15 | * (C) 1999-2000 Stelias Computing Inc |
| 16 | * |
| 17 | * HISTORY |
| 18 | * |
| 19 | * 10/02/98 dgb Attempt to integrate into udf.o |
| 20 | * 10/07/98 Switched to using generic_readpage, etc., like isofs |
| 21 | * And it works! |
| 22 | * 12/06/98 blf Added udf_file_read. uses generic_file_read for all cases but |
| 23 | * ICBTAG_FLAG_AD_IN_ICB. |
| 24 | * 04/06/99 64 bit file handling on 32 bit systems taken from ext2 file.c |
| 25 | * 05/12/99 Preliminary file write support |
| 26 | */ |
| 27 | |
| 28 | #include "udfdecl.h" |
| 29 | #include <linux/fs.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 30 | #include <asm/uaccess.h> |
| 31 | #include <linux/kernel.h> |
Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 32 | #include <linux/string.h> /* memset */ |
Randy Dunlap | 16f7e0f | 2006-01-11 12:17:46 -0800 | [diff] [blame] | 33 | #include <linux/capability.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 34 | #include <linux/errno.h> |
| 35 | #include <linux/smp_lock.h> |
| 36 | #include <linux/pagemap.h> |
Christoph Hellwig | 759bfee | 2010-03-03 09:05:02 -0500 | [diff] [blame] | 37 | #include <linux/quotaops.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 38 | #include <linux/buffer_head.h> |
Alexey Dobriyan | e8edc6e | 2007-05-21 01:22:52 +0400 | [diff] [blame] | 39 | #include <linux/aio.h> |
John Kacur | 2f07a88 | 2010-05-05 15:15:39 +0200 | [diff] [blame] | 40 | #include <linux/smp_lock.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 41 | |
| 42 | #include "udf_i.h" |
| 43 | #include "udf_sb.h" |
| 44 | |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 45 | static int udf_adinicb_readpage(struct file *file, struct page *page) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 46 | { |
| 47 | struct inode *inode = page->mapping->host; |
| 48 | char *kaddr; |
Marcin Slusarz | 48d6d8f | 2008-02-08 04:20:44 -0800 | [diff] [blame] | 49 | struct udf_inode_info *iinfo = UDF_I(inode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 50 | |
Matt Mackall | cd7619d | 2005-05-01 08:59:01 -0700 | [diff] [blame] | 51 | BUG_ON(!PageLocked(page)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 52 | |
| 53 | kaddr = kmap(page); |
| 54 | memset(kaddr, 0, PAGE_CACHE_SIZE); |
Marcin Slusarz | 48d6d8f | 2008-02-08 04:20:44 -0800 | [diff] [blame] | 55 | memcpy(kaddr, iinfo->i_ext.i_data + iinfo->i_lenEAttr, inode->i_size); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 56 | flush_dcache_page(page); |
| 57 | SetPageUptodate(page); |
| 58 | kunmap(page); |
| 59 | unlock_page(page); |
Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 60 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 61 | return 0; |
| 62 | } |
| 63 | |
Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 64 | static int udf_adinicb_writepage(struct page *page, |
| 65 | struct writeback_control *wbc) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 66 | { |
| 67 | struct inode *inode = page->mapping->host; |
| 68 | char *kaddr; |
Marcin Slusarz | 48d6d8f | 2008-02-08 04:20:44 -0800 | [diff] [blame] | 69 | struct udf_inode_info *iinfo = UDF_I(inode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 70 | |
Matt Mackall | cd7619d | 2005-05-01 08:59:01 -0700 | [diff] [blame] | 71 | BUG_ON(!PageLocked(page)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 72 | |
| 73 | kaddr = kmap(page); |
Marcin Slusarz | 48d6d8f | 2008-02-08 04:20:44 -0800 | [diff] [blame] | 74 | memcpy(iinfo->i_ext.i_data + iinfo->i_lenEAttr, kaddr, inode->i_size); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 75 | mark_inode_dirty(inode); |
| 76 | SetPageUptodate(page); |
| 77 | kunmap(page); |
| 78 | unlock_page(page); |
Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 79 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 80 | return 0; |
| 81 | } |
| 82 | |
Nick Piggin | be021ee | 2007-10-16 01:25:20 -0700 | [diff] [blame] | 83 | static int udf_adinicb_write_end(struct file *file, |
| 84 | struct address_space *mapping, |
| 85 | loff_t pos, unsigned len, unsigned copied, |
| 86 | struct page *page, void *fsdata) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 87 | { |
Nick Piggin | be021ee | 2007-10-16 01:25:20 -0700 | [diff] [blame] | 88 | struct inode *inode = mapping->host; |
| 89 | unsigned offset = pos & (PAGE_CACHE_SIZE - 1); |
| 90 | char *kaddr; |
Marcin Slusarz | 48d6d8f | 2008-02-08 04:20:44 -0800 | [diff] [blame] | 91 | struct udf_inode_info *iinfo = UDF_I(inode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 92 | |
Nick Piggin | be021ee | 2007-10-16 01:25:20 -0700 | [diff] [blame] | 93 | kaddr = kmap_atomic(page, KM_USER0); |
Marcin Slusarz | 48d6d8f | 2008-02-08 04:20:44 -0800 | [diff] [blame] | 94 | memcpy(iinfo->i_ext.i_data + iinfo->i_lenEAttr + offset, |
Nick Piggin | be021ee | 2007-10-16 01:25:20 -0700 | [diff] [blame] | 95 | kaddr + offset, copied); |
| 96 | kunmap_atomic(kaddr, KM_USER0); |
| 97 | |
| 98 | return simple_write_end(file, mapping, pos, len, copied, page, fsdata); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 99 | } |
| 100 | |
Christoph Hellwig | f5e54d6 | 2006-06-28 04:26:44 -0700 | [diff] [blame] | 101 | const struct address_space_operations udf_adinicb_aops = { |
Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 102 | .readpage = udf_adinicb_readpage, |
| 103 | .writepage = udf_adinicb_writepage, |
| 104 | .sync_page = block_sync_page, |
Nick Piggin | be021ee | 2007-10-16 01:25:20 -0700 | [diff] [blame] | 105 | .write_begin = simple_write_begin, |
| 106 | .write_end = udf_adinicb_write_end, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 107 | }; |
| 108 | |
Badari Pulavarty | 543ade1 | 2006-09-30 23:28:48 -0700 | [diff] [blame] | 109 | static ssize_t udf_file_aio_write(struct kiocb *iocb, const struct iovec *iov, |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 110 | unsigned long nr_segs, loff_t ppos) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 111 | { |
| 112 | ssize_t retval; |
Badari Pulavarty | 543ade1 | 2006-09-30 23:28:48 -0700 | [diff] [blame] | 113 | struct file *file = iocb->ki_filp; |
Josef Sipek | 5096e93 | 2006-12-08 02:37:44 -0800 | [diff] [blame] | 114 | struct inode *inode = file->f_path.dentry->d_inode; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 115 | int err, pos; |
Badari Pulavarty | 543ade1 | 2006-09-30 23:28:48 -0700 | [diff] [blame] | 116 | size_t count = iocb->ki_left; |
Marcin Slusarz | 48d6d8f | 2008-02-08 04:20:44 -0800 | [diff] [blame] | 117 | struct udf_inode_info *iinfo = UDF_I(inode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 118 | |
Marcin Slusarz | 48d6d8f | 2008-02-08 04:20:44 -0800 | [diff] [blame] | 119 | if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 120 | if (file->f_flags & O_APPEND) |
| 121 | pos = inode->i_size; |
| 122 | else |
Badari Pulavarty | 543ade1 | 2006-09-30 23:28:48 -0700 | [diff] [blame] | 123 | pos = ppos; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 124 | |
Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 125 | if (inode->i_sb->s_blocksize < |
| 126 | (udf_file_entry_alloc_offset(inode) + |
Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 127 | pos + count)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 128 | udf_expand_file_adinicb(inode, pos + count, &err); |
Marcin Slusarz | 48d6d8f | 2008-02-08 04:20:44 -0800 | [diff] [blame] | 129 | if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 130 | udf_debug("udf_expand_adinicb: err=%d\n", err); |
| 131 | return err; |
| 132 | } |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 133 | } else { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 134 | if (pos + count > inode->i_size) |
Marcin Slusarz | 48d6d8f | 2008-02-08 04:20:44 -0800 | [diff] [blame] | 135 | iinfo->i_lenAlloc = pos + count; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 136 | else |
Marcin Slusarz | 48d6d8f | 2008-02-08 04:20:44 -0800 | [diff] [blame] | 137 | iinfo->i_lenAlloc = inode->i_size; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 138 | } |
| 139 | } |
| 140 | |
Badari Pulavarty | 543ade1 | 2006-09-30 23:28:48 -0700 | [diff] [blame] | 141 | retval = generic_file_aio_write(iocb, iov, nr_segs, ppos); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 142 | if (retval > 0) |
| 143 | mark_inode_dirty(inode); |
Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 144 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 145 | return retval; |
| 146 | } |
| 147 | |
John Kacur | 2f07a88 | 2010-05-05 15:15:39 +0200 | [diff] [blame] | 148 | long udf_ioctl(struct file *filp, unsigned int cmd, unsigned long arg) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 149 | { |
John Kacur | 2f07a88 | 2010-05-05 15:15:39 +0200 | [diff] [blame] | 150 | struct inode *inode = filp->f_dentry->d_inode; |
Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 151 | long old_block, new_block; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 152 | int result = -EINVAL; |
| 153 | |
John Kacur | 2f07a88 | 2010-05-05 15:15:39 +0200 | [diff] [blame] | 154 | lock_kernel(); |
| 155 | |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 156 | if (file_permission(filp, MAY_READ) != 0) { |
John Kacur | 2f07a88 | 2010-05-05 15:15:39 +0200 | [diff] [blame] | 157 | udf_debug("no permission to access inode %lu\n", inode->i_ino); |
| 158 | result = -EPERM; |
| 159 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 160 | } |
| 161 | |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 162 | if (!arg) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 163 | udf_debug("invalid argument to udf_ioctl\n"); |
John Kacur | 2f07a88 | 2010-05-05 15:15:39 +0200 | [diff] [blame] | 164 | result = -EINVAL; |
| 165 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 166 | } |
| 167 | |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 168 | switch (cmd) { |
| 169 | case UDF_GETVOLIDENT: |
Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 170 | if (copy_to_user((char __user *)arg, |
| 171 | UDF_SB(inode->i_sb)->s_volume_ident, 32)) |
John Kacur | 2f07a88 | 2010-05-05 15:15:39 +0200 | [diff] [blame] | 172 | result = -EFAULT; |
Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 173 | else |
John Kacur | 2f07a88 | 2010-05-05 15:15:39 +0200 | [diff] [blame] | 174 | result = 0; |
| 175 | goto out; |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 176 | case UDF_RELOCATE_BLOCKS: |
John Kacur | 2f07a88 | 2010-05-05 15:15:39 +0200 | [diff] [blame] | 177 | if (!capable(CAP_SYS_ADMIN)) { |
| 178 | result = -EACCES; |
| 179 | goto out; |
| 180 | } |
| 181 | if (get_user(old_block, (long __user *)arg)) { |
| 182 | result = -EFAULT; |
| 183 | goto out; |
| 184 | } |
Marcin Slusarz | 4b11111 | 2008-02-08 04:20:36 -0800 | [diff] [blame] | 185 | result = udf_relocate_blocks(inode->i_sb, |
| 186 | old_block, &new_block); |
| 187 | if (result == 0) |
Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 188 | result = put_user(new_block, (long __user *)arg); |
John Kacur | 2f07a88 | 2010-05-05 15:15:39 +0200 | [diff] [blame] | 189 | goto out; |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 190 | case UDF_GETEASIZE: |
Marcin Slusarz | c0b3443 | 2008-02-08 04:20:42 -0800 | [diff] [blame] | 191 | result = put_user(UDF_I(inode)->i_lenEAttr, (int __user *)arg); |
John Kacur | 2f07a88 | 2010-05-05 15:15:39 +0200 | [diff] [blame] | 192 | goto out; |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 193 | case UDF_GETEABLOCK: |
Marcin Slusarz | c0b3443 | 2008-02-08 04:20:42 -0800 | [diff] [blame] | 194 | result = copy_to_user((char __user *)arg, |
| 195 | UDF_I(inode)->i_ext.i_data, |
| 196 | UDF_I(inode)->i_lenEAttr) ? -EFAULT : 0; |
John Kacur | 2f07a88 | 2010-05-05 15:15:39 +0200 | [diff] [blame] | 197 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 198 | } |
| 199 | |
John Kacur | 2f07a88 | 2010-05-05 15:15:39 +0200 | [diff] [blame] | 200 | out: |
| 201 | unlock_kernel(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 202 | return result; |
| 203 | } |
| 204 | |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 205 | static int udf_release_file(struct inode *inode, struct file *filp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 206 | { |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 207 | if (filp->f_mode & FMODE_WRITE) { |
Jan Kara | cbc8cc3 | 2009-08-07 00:27:27 +0200 | [diff] [blame] | 208 | mutex_lock(&inode->i_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 209 | lock_kernel(); |
| 210 | udf_discard_prealloc(inode); |
Jan Kara | 2c948b3 | 2009-12-03 13:39:28 +0100 | [diff] [blame] | 211 | udf_truncate_tail_extent(inode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 212 | unlock_kernel(); |
Jan Kara | cbc8cc3 | 2009-08-07 00:27:27 +0200 | [diff] [blame] | 213 | mutex_unlock(&inode->i_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 214 | } |
| 215 | return 0; |
| 216 | } |
| 217 | |
Arjan van de Ven | 4b6f5d2 | 2006-03-28 01:56:42 -0800 | [diff] [blame] | 218 | const struct file_operations udf_file_operations = { |
Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 219 | .read = do_sync_read, |
| 220 | .aio_read = generic_file_aio_read, |
John Kacur | 2f07a88 | 2010-05-05 15:15:39 +0200 | [diff] [blame] | 221 | .unlocked_ioctl = udf_ioctl, |
Christoph Hellwig | 907f455 | 2010-03-03 09:05:06 -0500 | [diff] [blame] | 222 | .open = dquot_file_open, |
Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 223 | .mmap = generic_file_mmap, |
| 224 | .write = do_sync_write, |
| 225 | .aio_write = udf_file_aio_write, |
| 226 | .release = udf_release_file, |
Al Viro | 90de066 | 2009-06-07 15:40:27 -0400 | [diff] [blame] | 227 | .fsync = simple_fsync, |
Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 228 | .splice_read = generic_file_splice_read, |
Christoph Hellwig | 5c89468 | 2008-09-08 19:44:17 +0200 | [diff] [blame] | 229 | .llseek = generic_file_llseek, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 230 | }; |
| 231 | |
Dmitry Monakhov | c15d0fc | 2010-03-29 11:05:21 +0400 | [diff] [blame] | 232 | int udf_setattr(struct dentry *dentry, struct iattr *iattr) |
Christoph Hellwig | 759bfee | 2010-03-03 09:05:02 -0500 | [diff] [blame] | 233 | { |
| 234 | struct inode *inode = dentry->d_inode; |
| 235 | int error; |
| 236 | |
| 237 | error = inode_change_ok(inode, iattr); |
| 238 | if (error) |
| 239 | return error; |
| 240 | |
Dmitry Monakhov | 1275562 | 2010-04-08 22:04:20 +0400 | [diff] [blame] | 241 | if (is_quota_modification(inode, iattr)) |
Christoph Hellwig | 871a293 | 2010-03-03 09:05:07 -0500 | [diff] [blame] | 242 | dquot_initialize(inode); |
Christoph Hellwig | 907f455 | 2010-03-03 09:05:06 -0500 | [diff] [blame] | 243 | |
Christoph Hellwig | 759bfee | 2010-03-03 09:05:02 -0500 | [diff] [blame] | 244 | if ((iattr->ia_valid & ATTR_UID && iattr->ia_uid != inode->i_uid) || |
| 245 | (iattr->ia_valid & ATTR_GID && iattr->ia_gid != inode->i_gid)) { |
Christoph Hellwig | b43fa82 | 2010-03-03 09:05:03 -0500 | [diff] [blame] | 246 | error = dquot_transfer(inode, iattr); |
Christoph Hellwig | 759bfee | 2010-03-03 09:05:02 -0500 | [diff] [blame] | 247 | if (error) |
| 248 | return error; |
| 249 | } |
| 250 | |
| 251 | return inode_setattr(inode, iattr); |
| 252 | } |
| 253 | |
Arjan van de Ven | c5ef1c4 | 2007-02-12 00:55:40 -0800 | [diff] [blame] | 254 | const struct inode_operations udf_file_inode_operations = { |
Christoph Hellwig | 759bfee | 2010-03-03 09:05:02 -0500 | [diff] [blame] | 255 | .truncate = udf_truncate, |
| 256 | .setattr = udf_setattr, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 257 | }; |