Blame view

fs/jffs2/file.c 9.09 KB
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1
2
3
  /*
   * JFFS2 -- Journalling Flash File System, Version 2.
   *
c00c310ea   David Woodhouse   [JFFS2] Tidy up l...
4
   * Copyright © 2001-2007 Red Hat, Inc.
6088c0587   David Woodhouse   jffs2: Update cop...
5
   * Copyright © 2004-2010 David Woodhouse <dwmw2@infradead.org>
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
6
7
8
9
10
   *
   * Created by David Woodhouse <dwmw2@infradead.org>
   *
   * For licensing information, see the file 'LICENCE' in this directory.
   *
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
11
   */
5a528957e   Joe Perches   jffs2: Use pr_fmt...
12
  #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
13
  #include <linux/kernel.h>
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
14
15
16
17
18
19
20
  #include <linux/fs.h>
  #include <linux/time.h>
  #include <linux/pagemap.h>
  #include <linux/highmem.h>
  #include <linux/crc32.h>
  #include <linux/jffs2.h>
  #include "nodelist.h"
205c109a7   Nick Piggin   jffs2: convert to...
21
22
23
24
25
26
  static int jffs2_write_end(struct file *filp, struct address_space *mapping,
  			loff_t pos, unsigned len, unsigned copied,
  			struct page *pg, void *fsdata);
  static int jffs2_write_begin(struct file *filp, struct address_space *mapping,
  			loff_t pos, unsigned len, unsigned flags,
  			struct page **pagep, void **fsdata);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
27
  static int jffs2_readpage (struct file *filp, struct page *pg);
02c24a821   Josef Bacik   fs: push i_mutex ...
28
  int jffs2_fsync(struct file *filp, loff_t start, loff_t end, int datasync)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
29
  {
7ea808591   Christoph Hellwig   drop unused dentr...
30
  	struct inode *inode = filp->f_mapping->host;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
31
  	struct jffs2_sb_info *c = JFFS2_SB_INFO(inode->i_sb);
02c24a821   Josef Bacik   fs: push i_mutex ...
32
  	int ret;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
33

3b49c9a1e   Jeff Layton   fs: convert a pil...
34
  	ret = file_write_and_wait_range(filp, start, end);
02c24a821   Josef Bacik   fs: push i_mutex ...
35
36
  	if (ret)
  		return ret;
5955102c9   Al Viro   wrappers for ->i_...
37
  	inode_lock(inode);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
38
39
  	/* Trigger GC to flush any pending writes for this inode */
  	jffs2_flush_wbuf_gc(c, inode->i_ino);
5955102c9   Al Viro   wrappers for ->i_...
40
  	inode_unlock(inode);
182ec4eee   Thomas Gleixner   [JFFS2] Clean up ...
41
42
  
  	return 0;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
43
  }
4b6f5d20b   Arjan van de Ven   [PATCH] Make most...
44
  const struct file_operations jffs2_file_operations =
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
45
46
47
  {
  	.llseek =	generic_file_llseek,
  	.open =		generic_file_open,
aad4f8bb4   Al Viro   switch simple gen...
48
   	.read_iter =	generic_file_read_iter,
8174202b3   Al Viro   write_iter varian...
49
   	.write_iter =	generic_file_write_iter,
0533400b7   Stoyan Gaydarov   [JFFS2] Use .unlo...
50
  	.unlocked_ioctl=jffs2_ioctl,
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
51
52
  	.mmap =		generic_file_readonly_mmap,
  	.fsync =	jffs2_fsync,
5ffc4ef45   Jens Axboe   sendfile: remove ...
53
  	.splice_read =	generic_file_splice_read,
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
54
55
56
  };
  
  /* jffs2_file_inode_operations */
92e1d5be9   Arjan van de Ven   [PATCH] mark stru...
57
  const struct inode_operations jffs2_file_inode_operations =
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
58
  {
4e34e719e   Christoph Hellwig   fs: take the ACL ...
59
  	.get_acl =	jffs2_get_acl,
f2963d455   Christoph Hellwig   jffs2: use generi...
60
  	.set_acl =	jffs2_set_acl,
aa98d7cf5   KaiGai Kohei   [JFFS2][XATTR] XA...
61
  	.setattr =	jffs2_setattr,
aa98d7cf5   KaiGai Kohei   [JFFS2][XATTR] XA...
62
  	.listxattr =	jffs2_listxattr,
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
63
  };
f5e54d6e5   Christoph Hellwig   [PATCH] mark addr...
64
  const struct address_space_operations jffs2_file_address_operations =
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
65
66
  {
  	.readpage =	jffs2_readpage,
205c109a7   Nick Piggin   jffs2: convert to...
67
68
  	.write_begin =	jffs2_write_begin,
  	.write_end =	jffs2_write_end,
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
69
70
71
72
73
74
75
76
  };
  
  static int jffs2_do_readpage_nolock (struct inode *inode, struct page *pg)
  {
  	struct jffs2_inode_info *f = JFFS2_INODE_INFO(inode);
  	struct jffs2_sb_info *c = JFFS2_SB_INFO(inode->i_sb);
  	unsigned char *pg_buf;
  	int ret;
9c261b33a   Joe Perches   jffs2: Convert mo...
77
78
  	jffs2_dbg(2, "%s(): ino #%lu, page at offset 0x%lx
  ",
09cbfeaf1   Kirill A. Shutemov   mm, fs: get rid o...
79
  		  __func__, inode->i_ino, pg->index << PAGE_SHIFT);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
80

cd7619d6b   Matt Mackall   [PATCH] Extermina...
81
  	BUG_ON(!PageLocked(pg));
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
82
83
84
  
  	pg_buf = kmap(pg);
  	/* FIXME: Can kmap fail? */
09cbfeaf1   Kirill A. Shutemov   mm, fs: get rid o...
85
86
  	ret = jffs2_read_inode_range(c, f, pg_buf, pg->index << PAGE_SHIFT,
  				     PAGE_SIZE);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
87
88
89
90
91
92
93
94
95
96
97
  
  	if (ret) {
  		ClearPageUptodate(pg);
  		SetPageError(pg);
  	} else {
  		SetPageUptodate(pg);
  		ClearPageError(pg);
  	}
  
  	flush_dcache_page(pg);
  	kunmap(pg);
9c261b33a   Joe Perches   jffs2: Convert mo...
98
99
  	jffs2_dbg(2, "readpage finished
  ");
57ca7deb0   Anders Grafström   jffs2: Fix return...
100
  	return ret;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
101
  }
265de8ce3   Christoph Hellwig   jffs2: pass the c...
102
  int jffs2_do_readpage_unlock(void *data, struct page *pg)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
103
  {
265de8ce3   Christoph Hellwig   jffs2: pass the c...
104
  	int ret = jffs2_do_readpage_nolock(data, pg);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
105
106
107
108
109
110
111
112
113
  	unlock_page(pg);
  	return ret;
  }
  
  
  static int jffs2_readpage (struct file *filp, struct page *pg)
  {
  	struct jffs2_inode_info *f = JFFS2_INODE_INFO(pg->mapping->host);
  	int ret;
182ec4eee   Thomas Gleixner   [JFFS2] Clean up ...
114

ced220703   David Woodhouse   [JFFS2] semaphore...
115
  	mutex_lock(&f->sem);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
116
  	ret = jffs2_do_readpage_unlock(pg->mapping->host, pg);
ced220703   David Woodhouse   [JFFS2] semaphore...
117
  	mutex_unlock(&f->sem);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
118
119
  	return ret;
  }
205c109a7   Nick Piggin   jffs2: convert to...
120
121
122
  static int jffs2_write_begin(struct file *filp, struct address_space *mapping,
  			loff_t pos, unsigned len, unsigned flags,
  			struct page **pagep, void **fsdata)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
123
  {
205c109a7   Nick Piggin   jffs2: convert to...
124
125
  	struct page *pg;
  	struct inode *inode = mapping->host;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
126
  	struct jffs2_inode_info *f = JFFS2_INODE_INFO(inode);
09cbfeaf1   Kirill A. Shutemov   mm, fs: get rid o...
127
128
  	pgoff_t index = pos >> PAGE_SHIFT;
  	uint32_t pageofs = index << PAGE_SHIFT;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
129
  	int ret = 0;
54566b2c1   Nick Piggin   fs: symlink write...
130
  	pg = grab_cache_page_write_begin(mapping, index, flags);
157078f64   Thomas Betker   Revert "jffs2: Fi...
131
  	if (!pg)
205c109a7   Nick Piggin   jffs2: convert to...
132
133
  		return -ENOMEM;
  	*pagep = pg;
157078f64   Thomas Betker   Revert "jffs2: Fi...
134
135
136
137
  	jffs2_dbg(1, "%s()
  ", __func__);
  
  	if (pageofs > inode->i_size) {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
138
  		/* Make new hole frag from old EOF to new page */
157078f64   Thomas Betker   Revert "jffs2: Fi...
139
140
  		struct jffs2_sb_info *c = JFFS2_SB_INFO(inode->i_sb);
  		struct jffs2_raw_inode ri;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
141
  		struct jffs2_full_dnode *fn;
157078f64   Thomas Betker   Revert "jffs2: Fi...
142
  		uint32_t alloc_len;
182ec4eee   Thomas Gleixner   [JFFS2] Clean up ...
143

9c261b33a   Joe Perches   jffs2: Convert mo...
144
145
146
  		jffs2_dbg(1, "Writing new hole frag 0x%x-0x%x between current EOF and new page
  ",
  			  (unsigned int)inode->i_size, pageofs);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
147

157078f64   Thomas Betker   Revert "jffs2: Fi...
148
149
150
151
152
153
  		ret = jffs2_reserve_space(c, sizeof(ri), &alloc_len,
  					  ALLOC_NORMAL, JFFS2_SUMMARY_INODE_SIZE);
  		if (ret)
  			goto out_page;
  
  		mutex_lock(&f->sem);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
154
155
156
157
158
159
160
161
162
163
  		memset(&ri, 0, sizeof(ri));
  
  		ri.magic = cpu_to_je16(JFFS2_MAGIC_BITMASK);
  		ri.nodetype = cpu_to_je16(JFFS2_NODETYPE_INODE);
  		ri.totlen = cpu_to_je32(sizeof(ri));
  		ri.hdr_crc = cpu_to_je32(crc32(0, &ri, sizeof(struct jffs2_unknown_node)-4));
  
  		ri.ino = cpu_to_je32(f->inocache->ino);
  		ri.version = cpu_to_je32(++f->highest_version);
  		ri.mode = cpu_to_jemode(inode->i_mode);
0cfe53d3c   Eric W. Biederman   userns: Convert j...
164
165
  		ri.uid = cpu_to_je16(i_uid_read(inode));
  		ri.gid = cpu_to_je16(i_gid_read(inode));
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
166
  		ri.isize = cpu_to_je32(max((uint32_t)inode->i_size, pageofs));
c4592b9c3   Arnd Bergmann   jffs2: use 64-bit...
167
  		ri.atime = ri.ctime = ri.mtime = cpu_to_je32(JFFS2_NOW());
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
168
169
170
171
172
173
  		ri.offset = cpu_to_je32(inode->i_size);
  		ri.dsize = cpu_to_je32(pageofs - inode->i_size);
  		ri.csize = cpu_to_je32(0);
  		ri.compr = JFFS2_COMPR_ZERO;
  		ri.node_crc = cpu_to_je32(crc32(0, &ri, sizeof(ri)-8));
  		ri.data_crc = cpu_to_je32(0);
182ec4eee   Thomas Gleixner   [JFFS2] Clean up ...
174

9fe4854cd   David Woodhouse   [JFFS2] Remove fl...
175
  		fn = jffs2_write_dnode(c, f, &ri, NULL, 0, ALLOC_NORMAL);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
176
177
178
179
  
  		if (IS_ERR(fn)) {
  			ret = PTR_ERR(fn);
  			jffs2_complete_reservation(c);
157078f64   Thomas Betker   Revert "jffs2: Fi...
180
  			mutex_unlock(&f->sem);
205c109a7   Nick Piggin   jffs2: convert to...
181
  			goto out_page;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
182
183
184
185
186
187
188
189
  		}
  		ret = jffs2_add_full_dnode_to_inode(c, f, fn);
  		if (f->metadata) {
  			jffs2_mark_node_obsolete(c, f->metadata->raw);
  			jffs2_free_full_dnode(f->metadata);
  			f->metadata = NULL;
  		}
  		if (ret) {
9c261b33a   Joe Perches   jffs2: Convert mo...
190
191
192
  			jffs2_dbg(1, "Eep. add_full_dnode_to_inode() failed in write_begin, returned %d
  ",
  				  ret);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
193
194
195
  			jffs2_mark_node_obsolete(c, fn->raw);
  			jffs2_free_full_dnode(fn);
  			jffs2_complete_reservation(c);
157078f64   Thomas Betker   Revert "jffs2: Fi...
196
  			mutex_unlock(&f->sem);
205c109a7   Nick Piggin   jffs2: convert to...
197
  			goto out_page;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
198
199
200
  		}
  		jffs2_complete_reservation(c);
  		inode->i_size = pageofs;
157078f64   Thomas Betker   Revert "jffs2: Fi...
201
  		mutex_unlock(&f->sem);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
202
  	}
182ec4eee   Thomas Gleixner   [JFFS2] Clean up ...
203

205c109a7   Nick Piggin   jffs2: convert to...
204
205
206
207
208
209
  	/*
  	 * Read in the page if it wasn't already present. Cannot optimize away
  	 * the whole page write case until jffs2_write_end can handle the
  	 * case of a short-copy.
  	 */
  	if (!PageUptodate(pg)) {
157078f64   Thomas Betker   Revert "jffs2: Fi...
210
  		mutex_lock(&f->sem);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
211
  		ret = jffs2_do_readpage_nolock(inode, pg);
157078f64   Thomas Betker   Revert "jffs2: Fi...
212
  		mutex_unlock(&f->sem);
205c109a7   Nick Piggin   jffs2: convert to...
213
214
  		if (ret)
  			goto out_page;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
215
  	}
9c261b33a   Joe Perches   jffs2: Convert mo...
216
217
  	jffs2_dbg(1, "end write_begin(). pg->flags %lx
  ", pg->flags);
205c109a7   Nick Piggin   jffs2: convert to...
218
219
220
221
  	return ret;
  
  out_page:
  	unlock_page(pg);
09cbfeaf1   Kirill A. Shutemov   mm, fs: get rid o...
222
  	put_page(pg);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
223
224
  	return ret;
  }
205c109a7   Nick Piggin   jffs2: convert to...
225
226
227
  static int jffs2_write_end(struct file *filp, struct address_space *mapping,
  			loff_t pos, unsigned len, unsigned copied,
  			struct page *pg, void *fsdata)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
228
229
230
231
  {
  	/* Actually commit the write from the page cache page we're looking at.
  	 * For now, we write the full page out each time. It sucks, but it's simple
  	 */
205c109a7   Nick Piggin   jffs2: convert to...
232
  	struct inode *inode = mapping->host;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
233
234
235
  	struct jffs2_inode_info *f = JFFS2_INODE_INFO(inode);
  	struct jffs2_sb_info *c = JFFS2_SB_INFO(inode->i_sb);
  	struct jffs2_raw_inode *ri;
09cbfeaf1   Kirill A. Shutemov   mm, fs: get rid o...
236
  	unsigned start = pos & (PAGE_SIZE - 1);
205c109a7   Nick Piggin   jffs2: convert to...
237
  	unsigned end = start + copied;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
238
239
240
  	unsigned aligned_start = start & ~3;
  	int ret = 0;
  	uint32_t writtenlen = 0;
9c261b33a   Joe Perches   jffs2: Convert mo...
241
242
  	jffs2_dbg(1, "%s(): ino #%lu, page at 0x%lx, range %d-%d, flags %lx
  ",
09cbfeaf1   Kirill A. Shutemov   mm, fs: get rid o...
243
  		  __func__, inode->i_ino, pg->index << PAGE_SHIFT,
9c261b33a   Joe Perches   jffs2: Convert mo...
244
  		  start, end, pg->flags);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
245

205c109a7   Nick Piggin   jffs2: convert to...
246
247
248
249
250
  	/* We need to avoid deadlock with page_cache_read() in
  	   jffs2_garbage_collect_pass(). So the page must be
  	   up to date to prevent page_cache_read() from trying
  	   to re-lock it. */
  	BUG_ON(!PageUptodate(pg));
09cbfeaf1   Kirill A. Shutemov   mm, fs: get rid o...
251
  	if (end == PAGE_SIZE) {
205c109a7   Nick Piggin   jffs2: convert to...
252
253
254
255
  		/* When writing out the end of a page, write out the
  		   _whole_ page. This helps to reduce the number of
  		   nodes in files which have many short writes, like
  		   syslog files. */
2a754b51a   Nick Piggin   [JFFS2] Fix retur...
256
  		aligned_start = 0;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
257
258
259
260
261
  	}
  
  	ri = jffs2_alloc_raw_inode();
  
  	if (!ri) {
9c261b33a   Joe Perches   jffs2: Convert mo...
262
263
264
  		jffs2_dbg(1, "%s(): Allocation of raw inode failed
  ",
  			  __func__);
205c109a7   Nick Piggin   jffs2: convert to...
265
  		unlock_page(pg);
09cbfeaf1   Kirill A. Shutemov   mm, fs: get rid o...
266
  		put_page(pg);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
267
268
269
270
271
272
  		return -ENOMEM;
  	}
  
  	/* Set the fields that the generic jffs2_write_inode_range() code can't find */
  	ri->ino = cpu_to_je32(inode->i_ino);
  	ri->mode = cpu_to_jemode(inode->i_mode);
0cfe53d3c   Eric W. Biederman   userns: Convert j...
273
274
  	ri->uid = cpu_to_je16(i_uid_read(inode));
  	ri->gid = cpu_to_je16(i_gid_read(inode));
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
275
  	ri->isize = cpu_to_je32((uint32_t)inode->i_size);
c4592b9c3   Arnd Bergmann   jffs2: use 64-bit...
276
  	ri->atime = ri->ctime = ri->mtime = cpu_to_je32(JFFS2_NOW());
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
277
278
279
280
281
282
  
  	/* In 2.4, it was already kmapped by generic_file_write(). Doesn't
  	   hurt to do it again. The alternative is ifdefs, which are ugly. */
  	kmap(pg);
  
  	ret = jffs2_write_inode_range(c, f, ri, page_address(pg) + aligned_start,
09cbfeaf1   Kirill A. Shutemov   mm, fs: get rid o...
283
  				      (pg->index << PAGE_SHIFT) + aligned_start,
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
284
285
286
287
288
289
290
291
  				      end - aligned_start, &writtenlen);
  
  	kunmap(pg);
  
  	if (ret) {
  		/* There was an error writing. */
  		SetPageError(pg);
  	}
182ec4eee   Thomas Gleixner   [JFFS2] Clean up ...
292

1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
293
  	/* Adjust writtenlen for the padding we did, so we don't confuse our caller */
2a754b51a   Nick Piggin   [JFFS2] Fix retur...
294
  	writtenlen -= min(writtenlen, (start - aligned_start));
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
295
296
  
  	if (writtenlen) {
2a754b51a   Nick Piggin   [JFFS2] Fix retur...
297
298
  		if (inode->i_size < pos + writtenlen) {
  			inode->i_size = pos + writtenlen;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
299
  			inode->i_blocks = (inode->i_size + 511) >> 9;
182ec4eee   Thomas Gleixner   [JFFS2] Clean up ...
300

c4592b9c3   Arnd Bergmann   jffs2: use 64-bit...
301
  			inode->i_ctime = inode->i_mtime = ITIME(je32_to_cpu(ri->ctime));
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
302
303
304
305
306
307
308
  		}
  	}
  
  	jffs2_free_raw_inode(ri);
  
  	if (start+writtenlen < end) {
  		/* generic_file_write has written more to the page cache than we've
182ec4eee   Thomas Gleixner   [JFFS2] Clean up ...
309
  		   actually written to the medium. Mark the page !Uptodate so that
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
310
  		   it gets reread */
9c261b33a   Joe Perches   jffs2: Convert mo...
311
312
313
  		jffs2_dbg(1, "%s(): Not all bytes written. Marking page !uptodate
  ",
  			__func__);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
314
315
316
  		SetPageError(pg);
  		ClearPageUptodate(pg);
  	}
9c261b33a   Joe Perches   jffs2: Convert mo...
317
318
319
  	jffs2_dbg(1, "%s() returning %d
  ",
  		  __func__, writtenlen > 0 ? writtenlen : ret);
205c109a7   Nick Piggin   jffs2: convert to...
320
  	unlock_page(pg);
09cbfeaf1   Kirill A. Shutemov   mm, fs: get rid o...
321
  	put_page(pg);
205c109a7   Nick Piggin   jffs2: convert to...
322
  	return writtenlen > 0 ? writtenlen : ret;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
323
  }