Whamcloud - gitweb
ab8c1682553bcf6a7a2572576da7191527cfc327
[fs/lustre-release.git] / lustre / kernel_patches / patches / ext3-delete_thread-2.4.24.patch
1  fs/ext3/file.c             |    4 
2  fs/ext3/inode.c            |  116 ++++++++++++++++++++++
3  fs/ext3/super.c            |  230 +++++++++++++++++++++++++++++++++++++++++++++
4  include/linux/ext3_fs.h    |    5 
5  include/linux/ext3_fs_sb.h |   10 +
6  5 files changed, 365 insertions(+)
7
8 Index: linux-2.4.24-vanilla/fs/ext3/super.c
9 ===================================================================
10 --- linux-2.4.24-vanilla.orig/fs/ext3/super.c   2004-01-10 17:49:10.000000000 +0300
11 +++ linux-2.4.24-vanilla/fs/ext3/super.c        2004-01-11 23:13:34.000000000 +0300
12 @@ -400,6 +400,127 @@
13         }
14  }
15  
16 +#ifdef EXT3_DELETE_THREAD
17 +/*
18 + * Delete inodes in a loop until there are no more to be deleted.
19 + * Normally, we run in the background doing the deletes and sleeping again,
20 + * and clients just add new inodes to be deleted onto the end of the list.
21 + * If someone is concerned about free space (e.g. block allocation or similar)
22 + * then they can sleep on s_delete_waiter_queue and be woken up when space
23 + * has been freed.
24 + */
25 +int ext3_delete_thread(void *data)
26 +{
27 +       struct super_block *sb = data;
28 +       struct ext3_sb_info *sbi = EXT3_SB(sb);
29 +       struct task_struct *tsk = current;
30 +       struct inode *inode;
31 +       unsigned long blocks;
32 +
33 +       /* Almost like daemonize, but not quite */
34 +       exit_mm(current);
35 +       tsk->session = 1;
36 +       tsk->pgrp = 1;
37 +       tsk->tty = NULL;
38 +       exit_files(current);
39 +       reparent_to_init();
40 +
41 +       sprintf(tsk->comm, "kdelext3-%s", kdevname(sb->s_dev));
42 +       sigfillset(&tsk->blocked);
43 +
44 +       /*tsk->flags |= PF_KERNTHREAD;*/
45 +
46 +       INIT_LIST_HEAD(&sbi->s_delete_list);
47 +       wake_up(&sbi->s_delete_waiter_queue);
48 +       ext3_debug("delete thread on %s started\n", kdevname(sb->s_dev));
49 +
50 +       /* main loop */
51 +       for (;;) {
52 +               wait_event_interruptible(sbi->s_delete_thread_queue,
53 +                                        !list_empty(&sbi->s_delete_list) ||
54 +                                        !test_opt(sb, ASYNCDEL));
55 +               ext3_debug("%s woken up: %lu inodes, %lu blocks\n",
56 +                          tsk->comm,sbi->s_delete_inodes,sbi->s_delete_blocks);
57 +
58 +               spin_lock(&sbi->s_delete_lock);
59 +               if (list_empty(&sbi->s_delete_list)) {
60 +                       clear_opt(sbi->s_mount_opt, ASYNCDEL);
61 +                       memset(&sbi->s_delete_list, 0,
62 +                              sizeof(sbi->s_delete_list));
63 +                       spin_unlock(&sbi->s_delete_lock);
64 +                       ext3_debug("delete thread on %s exiting\n",
65 +                                  kdevname(sb->s_dev));
66 +                       wake_up(&sbi->s_delete_waiter_queue);
67 +                       break;
68 +               }
69 +
70 +               while (!list_empty(&sbi->s_delete_list)) {
71 +                       inode = list_entry(sbi->s_delete_list.next,
72 +                                              struct inode, i_devices);
73 +                       blocks = inode->i_blocks >> (inode->i_blkbits - 9);
74 +
75 +                       list_del_init(&inode->i_devices);
76 +                       spin_unlock(&sbi->s_delete_lock);
77 +                       ext3_debug("%s delete ino %lu blk %lu\n",
78 +                                  tsk->comm, inode->i_ino, blocks);
79 +
80 +                       J_ASSERT(EXT3_I(inode)->i_state & EXT3_STATE_DELETE);
81 +                       J_ASSERT(inode->i_nlink == 1);
82 +                       inode->i_nlink = 0;
83 +                       iput(inode);
84 +
85 +                       spin_lock(&sbi->s_delete_lock);
86 +                       sbi->s_delete_blocks -= blocks;
87 +                       sbi->s_delete_inodes--;
88 +               }
89 +               if (sbi->s_delete_blocks != 0 || sbi->s_delete_inodes != 0) {
90 +                       ext3_warning(sb, __FUNCTION__,
91 +                                    "%lu blocks, %lu inodes on list?\n",
92 +                                    sbi->s_delete_blocks,sbi->s_delete_inodes);
93 +                       sbi->s_delete_blocks = 0;
94 +                       sbi->s_delete_inodes = 0;
95 +               }
96 +               spin_unlock(&sbi->s_delete_lock);
97 +               wake_up(&sbi->s_delete_waiter_queue);
98 +       }
99 +
100 +       return 0;
101 +}
102 +
103 +static void ext3_start_delete_thread(struct super_block *sb)
104 +{
105 +       struct ext3_sb_info *sbi = EXT3_SB(sb);
106 +       int rc;
107 +
108 +       spin_lock_init(&sbi->s_delete_lock);
109 +       init_waitqueue_head(&sbi->s_delete_thread_queue);
110 +       init_waitqueue_head(&sbi->s_delete_waiter_queue);
111 +
112 +       if (!test_opt(sb, ASYNCDEL))
113 +               return;
114 +
115 +       rc = kernel_thread(ext3_delete_thread, sb, CLONE_VM | CLONE_FILES);
116 +       if (rc < 0)
117 +               printk(KERN_ERR "EXT3-fs: cannot start delete thread: rc %d\n",
118 +                      rc);
119 +       else
120 +               wait_event(sbi->s_delete_waiter_queue, sbi->s_delete_list.next);
121 +}
122 +
123 +static void ext3_stop_delete_thread(struct ext3_sb_info *sbi)
124 +{
125 +       if (sbi->s_delete_list.next == 0)       /* thread never started */
126 +               return;
127 +
128 +       clear_opt(sbi->s_mount_opt, ASYNCDEL);
129 +       wake_up(&sbi->s_delete_thread_queue);
130 +       wait_event(sbi->s_delete_waiter_queue, sbi->s_delete_list.next == 0);
131 +}
132 +#else
133 +#define ext3_start_delete_thread(sbi) do {} while(0)
134 +#define ext3_stop_delete_thread(sbi) do {} while(0)
135 +#endif /* EXT3_DELETE_THREAD */
136 +
137  void ext3_put_super (struct super_block * sb)
138  {
139         struct ext3_sb_info *sbi = EXT3_SB(sb);
140 @@ -527,6 +648,13 @@
141                         clear_opt (*mount_options, XATTR_USER);
142                 else
143  #endif
144 +#ifdef EXT3_DELETE_THREAD
145 +               if (!strcmp(this_char, "asyncdel"))
146 +                       set_opt(*mount_options, ASYNCDEL);
147 +               else if (!strcmp(this_char, "noasyncdel"))
148 +                       clear_opt(*mount_options, ASYNCDEL);
149 +               else
150 +#endif
151                 if (!strcmp (this_char, "bsddf"))
152                         clear_opt (*mount_options, MINIX_DF);
153                 else if (!strcmp (this_char, "nouid32")) {
154 @@ -1227,6 +1355,7 @@
155         }
156  
157         ext3_setup_super (sb, es, sb->s_flags & MS_RDONLY);
158 +       ext3_start_delete_thread(sb);
159         /*
160          * akpm: core read_super() calls in here with the superblock locked.
161          * That deadlocks, because orphan cleanup needs to lock the superblock
162 @@ -1618,7 +1747,12 @@
163  static int ext3_sync_fs(struct super_block *sb)
164  {
165         tid_t target;
166 -       
167 +
168 +       if (atomic_read(&sb->s_active) == 0) {
169 +               /* fs is being umounted: time to stop delete thread */
170 +               ext3_stop_delete_thread(EXT3_SB(sb));
171 +       }
172 +
173         sb->s_dirt = 0;
174         target = log_start_commit(EXT3_SB(sb)->s_journal, NULL);
175         log_wait_commit(EXT3_SB(sb)->s_journal, target);
176 @@ -1682,6 +1816,9 @@
177         if (!parse_options(data, &tmp, sbi, &tmp, 1))
178                 return -EINVAL;
179  
180 +       if (!test_opt(sb, ASYNCDEL) || (*flags & MS_RDONLY))
181 +               ext3_stop_delete_thread(sbi);
182 +
183         if (sbi->s_mount_opt & EXT3_MOUNT_ABORT)
184                 ext3_abort(sb, __FUNCTION__, "Abort forced by user");
185  
186 Index: linux-2.4.24-vanilla/fs/ext3/inode.c
187 ===================================================================
188 --- linux-2.4.24-vanilla.orig/fs/ext3/inode.c   2004-01-10 17:49:11.000000000 +0300
189 +++ linux-2.4.24-vanilla/fs/ext3/inode.c        2004-01-11 23:12:44.000000000 +0300
190 @@ -2551,6 +2551,118 @@
191         return err;
192  }
193  
194 +#ifdef EXT3_DELETE_THREAD
195 +/* Move blocks from to-be-truncated inode over to a new inode, and delete
196 + * that one from the delete thread instead.  This avoids a lot of latency
197 + * when truncating large files.
198 + *
199 + * If we have any problem deferring the truncate, just truncate it right away.
200 + * If we defer it, we also mark how many blocks it would free, so that we
201 + * can keep the statfs data correct, and we know if we should sleep on the
202 + * delete thread when we run out of space.
203 + */
204 +void ext3_truncate_thread(struct inode *old_inode)
205 +{
206 +       struct ext3_sb_info *sbi = EXT3_SB(old_inode->i_sb);
207 +       struct ext3_inode_info *nei, *oei = EXT3_I(old_inode);
208 +       struct inode *new_inode;
209 +       handle_t *handle;
210 +       unsigned long blocks = old_inode->i_blocks >> (old_inode->i_blkbits-9);
211 +
212 +       if (!test_opt(old_inode->i_sb, ASYNCDEL) || !sbi->s_delete_list.next)
213 +               goto out_truncate;
214 +
215 +       /* XXX This is a temporary limitation for code simplicity.
216 +        *     We could truncate to arbitrary sizes at some later time.
217 +        */
218 +       if (old_inode->i_size != 0)
219 +               goto out_truncate;
220 +
221 +       /* We may want to truncate the inode immediately and not defer it */
222 +       if (IS_SYNC(old_inode) || blocks <= EXT3_NDIR_BLOCKS ||
223 +           old_inode->i_size > oei->i_disksize)
224 +               goto out_truncate;
225 +
226 +       /* We can't use the delete thread as-is during real orphan recovery,
227 +        * as we add to the orphan list here, causing ext3_orphan_cleanup()
228 +        * to loop endlessly.  It would be nice to do so, but needs work.
229 +        */
230 +       if (oei->i_state & EXT3_STATE_DELETE ||
231 +           sbi->s_mount_state & EXT3_ORPHAN_FS) {
232 +               ext3_debug("doing deferred inode %lu delete (%lu blocks)\n",
233 +                          old_inode->i_ino, blocks);
234 +               goto out_truncate;
235 +       }
236 +
237 +       ext3_discard_prealloc(old_inode);
238 +
239 +       /* old_inode   = 1
240 +        * new_inode   = sb + GDT + ibitmap
241 +        * orphan list = 1 inode/superblock for add, 2 inodes for del
242 +        * quota files = 2 * EXT3_SINGLEDATA_TRANS_BLOCKS
243 +        */
244 +       handle = ext3_journal_start(old_inode, 7);
245 +       if (IS_ERR(handle))
246 +               goto out_truncate;
247 +
248 +       new_inode = ext3_new_inode(handle, old_inode, old_inode->i_mode);
249 +       if (IS_ERR(new_inode)) {
250 +               ext3_debug("truncate inode %lu directly (no new inodes)\n",
251 +                          old_inode->i_ino);
252 +               goto out_journal;
253 +       }
254 +
255 +       nei = EXT3_I(new_inode);
256 +
257 +       down_write(&oei->truncate_sem);
258 +       new_inode->i_size = old_inode->i_size;
259 +       new_inode->i_blocks = old_inode->i_blocks;
260 +       new_inode->i_uid = old_inode->i_uid;
261 +       new_inode->i_gid = old_inode->i_gid;
262 +       new_inode->i_nlink = 1;
263 +
264 +       /* FIXME when we do arbitrary truncates */
265 +       old_inode->i_blocks = oei->i_file_acl ? old_inode->i_blksize / 512 : 0;
266 +       old_inode->i_mtime = old_inode->i_ctime = CURRENT_TIME;
267 +
268 +       memcpy(nei->i_data, oei->i_data, sizeof(nei->i_data));
269 +       memset(oei->i_data, 0, sizeof(oei->i_data));
270 +
271 +       nei->i_disksize = oei->i_disksize;
272 +       nei->i_state |= EXT3_STATE_DELETE;
273 +       up_write(&oei->truncate_sem);
274 +
275 +       if (ext3_orphan_add(handle, new_inode) < 0)
276 +               goto out_journal;
277 +
278 +       if (ext3_orphan_del(handle, old_inode) < 0) {
279 +               ext3_orphan_del(handle, new_inode);
280 +               iput(new_inode);
281 +               goto out_journal;
282 +       }
283 +
284 +       ext3_journal_stop(handle, old_inode);
285 +
286 +       spin_lock(&sbi->s_delete_lock);
287 +       J_ASSERT(list_empty(&new_inode->i_devices));
288 +       list_add_tail(&new_inode->i_devices, &sbi->s_delete_list);
289 +       sbi->s_delete_blocks += blocks;
290 +       sbi->s_delete_inodes++;
291 +       spin_unlock(&sbi->s_delete_lock);
292 +
293 +       ext3_debug("delete inode %lu (%lu blocks) by thread\n",
294 +                  new_inode->i_ino, blocks);
295 +
296 +       wake_up(&sbi->s_delete_thread_queue);
297 +       return;
298 +
299 +out_journal:
300 +       ext3_journal_stop(handle, old_inode);
301 +out_truncate:
302 +       ext3_truncate(old_inode);
303 +}
304 +#endif /* EXT3_DELETE_THREAD */
305 +
306  /* 
307   * On success, We end up with an outstanding reference count against
308   * iloc->bh.  This _must_ be cleaned up later. 
309 Index: linux-2.4.24-vanilla/fs/ext3/file.c
310 ===================================================================
311 --- linux-2.4.24-vanilla.orig/fs/ext3/file.c    2004-01-10 17:49:10.000000000 +0300
312 +++ linux-2.4.24-vanilla/fs/ext3/file.c 2004-01-11 23:08:54.000000000 +0300
313 @@ -126,7 +126,11 @@
314  };
315  
316  struct inode_operations ext3_file_inode_operations = {
317 +#ifdef EXT3_DELETE_THREAD
318 +       truncate:       ext3_truncate_thread,   /* BKL held */
319 +#else
320         truncate:       ext3_truncate,          /* BKL held */
321 +#endif
322         setattr:        ext3_setattr,           /* BKL held */
323         setxattr:       ext3_setxattr,          /* BKL held */
324         getxattr:       ext3_getxattr,          /* BKL held */
325 Index: linux-2.4.24-vanilla/fs/ext3/namei.c
326 ===================================================================
327 --- linux-2.4.24-vanilla.orig/fs/ext3/namei.c   2004-01-10 17:49:10.000000000 +0300
328 +++ linux-2.4.24-vanilla/fs/ext3/namei.c        2004-01-11 23:08:54.000000000 +0300
329 @@ -1936,6 +1936,36 @@
330         return retval;
331  }
332  
333 +static int ext3_try_to_delay_deletion(struct inode *inode)
334 +{
335 +       struct ext3_sb_info *sbi = EXT3_SB(inode->i_sb);
336 +       struct ext3_inode_info *ei = EXT3_I(inode);
337 +       unsigned long blocks;
338 +       
339 +       if (!test_opt(inode->i_sb, ASYNCDEL))
340 +               return 0;
341 +
342 +       /* We may want to delete the inode immediately and not defer it */
343 +       blocks = inode->i_blocks >> (inode->i_blkbits - 9);
344 +       if (IS_SYNC(inode) || blocks <= EXT3_NDIR_BLOCKS)
345 +               return 0;
346 +
347 +       inode->i_nlink = 1;
348 +       atomic_inc(&inode->i_count);
349 +       ei->i_state |= EXT3_STATE_DELETE;
350 +
351 +       spin_lock(&sbi->s_delete_lock);
352 +       J_ASSERT(list_empty(&inode->i_devices));
353 +       list_add_tail(&inode->i_devices, &sbi->s_delete_list);
354 +       sbi->s_delete_blocks += blocks;
355 +       sbi->s_delete_inodes++;
356 +       spin_unlock(&sbi->s_delete_lock);
357 +       
358 +       wake_up(&sbi->s_delete_thread_queue);
359 +
360 +       return 0;
361 +}
362 +
363  static int ext3_unlink(struct inode * dir, struct dentry *dentry)
364  {
365         int retval;
366 @@ -1977,8 +2007,10 @@
367         ext3_update_dx_flag(dir);
368         ext3_mark_inode_dirty(handle, dir);
369         inode->i_nlink--;
370 -       if (!inode->i_nlink)
371 +       if (!inode->i_nlink) {
372 +               ext3_try_to_delay_deletion(inode);
373                 ext3_orphan_add(handle, inode);
374 +       }
375         inode->i_ctime = dir->i_ctime;
376         ext3_mark_inode_dirty(handle, inode);
377         retval = 0;
378 Index: linux-2.4.24-vanilla/include/linux/ext3_fs.h
379 ===================================================================
380 --- linux-2.4.24-vanilla.orig/include/linux/ext3_fs.h   2004-01-10 17:49:11.000000000 +0300
381 +++ linux-2.4.24-vanilla/include/linux/ext3_fs.h        2004-01-11 23:08:54.000000000 +0300
382 @@ -193,6 +193,7 @@
383   */
384  #define EXT3_STATE_JDATA               0x00000001 /* journaled data exists */
385  #define EXT3_STATE_NEW                 0x00000002 /* inode is newly created */
386 +#define EXT3_STATE_DELETE              0x00000010 /* deferred delete inode */
387  
388  /*
389   * ioctl commands
390 @@ -320,6 +321,7 @@
391  #define EXT3_MOUNT_UPDATE_JOURNAL      0x1000  /* Update the journal format */
392  #define EXT3_MOUNT_NO_UID32            0x2000  /* Disable 32-bit UIDs */
393  #define EXT3_MOUNT_XATTR_USER          0x4000  /* Extended user attributes */
394 +#define EXT3_MOUNT_ASYNCDEL            0x20000 /* Delayed deletion */
395  
396  /* Compatibility, for having both ext2_fs.h and ext3_fs.h included at once */
397  #ifndef _LINUX_EXT2_FS_H
398 @@ -697,6 +699,9 @@
399  extern void ext3_dirty_inode(struct inode *);
400  extern int ext3_change_inode_journal_flag(struct inode *, int);
401  extern void ext3_truncate (struct inode *);
402 +#ifdef EXT3_DELETE_THREAD
403 +extern void ext3_truncate_thread(struct inode *inode);
404 +#endif
405  extern void ext3_set_inode_flags(struct inode *);
406  
407  /* ioctl.c */
408 Index: linux-2.4.24-vanilla/include/linux/ext3_fs_sb.h
409 ===================================================================
410 --- linux-2.4.24-vanilla.orig/include/linux/ext3_fs_sb.h        2004-01-10 17:49:10.000000000 +0300
411 +++ linux-2.4.24-vanilla/include/linux/ext3_fs_sb.h     2004-01-11 23:08:54.000000000 +0300
412 @@ -29,6 +29,8 @@
413  
414  #define EXT3_MAX_GROUP_LOADED  8
415  
416 +#define EXT3_DELETE_THREAD
417 +
418  /*
419   * third extended-fs super-block data in memory
420   */
421 @@ -76,6 +78,14 @@
422         struct timer_list turn_ro_timer;        /* For turning read-only (crash simulation) */
423         wait_queue_head_t ro_wait_queue;        /* For people waiting for the fs to go read-only */
424  #endif
425 +#ifdef EXT3_DELETE_THREAD
426 +       spinlock_t s_delete_lock;
427 +       struct list_head s_delete_list;
428 +       unsigned long s_delete_blocks;
429 +       unsigned long s_delete_inodes;
430 +       wait_queue_head_t s_delete_thread_queue;
431 +       wait_queue_head_t s_delete_waiter_queue;
432 +#endif
433  };
434  
435  #endif /* _LINUX_EXT3_FS_SB */