59989f6f83ef0b3a38a7dda25a74fc69ff04a9db
[safe/jmp/linux-2.6] / fs / xfs / linux-2.6 / xfs_super.c
1 /*
2  * Copyright (c) 2000-2005 Silicon Graphics, Inc.
3  * All Rights Reserved.
4  *
5  * This program is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU General Public License as
7  * published by the Free Software Foundation.
8  *
9  * This program is distributed in the hope that it would be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program; if not, write the Free Software Foundation,
16  * Inc.,  51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
17  */
18 #include "xfs.h"
19 #include "xfs_bit.h"
20 #include "xfs_log.h"
21 #include "xfs_clnt.h"
22 #include "xfs_inum.h"
23 #include "xfs_trans.h"
24 #include "xfs_sb.h"
25 #include "xfs_ag.h"
26 #include "xfs_dir.h"
27 #include "xfs_dir2.h"
28 #include "xfs_alloc.h"
29 #include "xfs_dmapi.h"
30 #include "xfs_quota.h"
31 #include "xfs_mount.h"
32 #include "xfs_bmap_btree.h"
33 #include "xfs_alloc_btree.h"
34 #include "xfs_ialloc_btree.h"
35 #include "xfs_dir_sf.h"
36 #include "xfs_dir2_sf.h"
37 #include "xfs_attr_sf.h"
38 #include "xfs_dinode.h"
39 #include "xfs_inode.h"
40 #include "xfs_btree.h"
41 #include "xfs_ialloc.h"
42 #include "xfs_bmap.h"
43 #include "xfs_rtalloc.h"
44 #include "xfs_error.h"
45 #include "xfs_itable.h"
46 #include "xfs_rw.h"
47 #include "xfs_acl.h"
48 #include "xfs_cap.h"
49 #include "xfs_mac.h"
50 #include "xfs_attr.h"
51 #include "xfs_buf_item.h"
52 #include "xfs_utils.h"
53 #include "xfs_version.h"
54
55 #include <linux/namei.h>
56 #include <linux/init.h>
57 #include <linux/mount.h>
58 #include <linux/mempool.h>
59 #include <linux/writeback.h>
60 #include <linux/kthread.h>
61
62 STATIC struct quotactl_ops linvfs_qops;
63 STATIC struct super_operations linvfs_sops;
64 STATIC kmem_zone_t *xfs_vnode_zone;
65 STATIC kmem_zone_t *xfs_ioend_zone;
66 mempool_t *xfs_ioend_pool;
67
68 STATIC struct xfs_mount_args *
69 xfs_args_allocate(
70         struct super_block      *sb)
71 {
72         struct xfs_mount_args   *args;
73
74         args = kmem_zalloc(sizeof(struct xfs_mount_args), KM_SLEEP);
75         args->logbufs = args->logbufsize = -1;
76         strncpy(args->fsname, sb->s_id, MAXNAMELEN);
77
78         /* Copy the already-parsed mount(2) flags we're interested in */
79         if (sb->s_flags & MS_DIRSYNC)
80                 args->flags |= XFSMNT_DIRSYNC;
81         if (sb->s_flags & MS_SYNCHRONOUS)
82                 args->flags |= XFSMNT_WSYNC;
83
84         /* Default to 32 bit inodes on Linux all the time */
85         args->flags |= XFSMNT_32BITINODES;
86
87         return args;
88 }
89
90 __uint64_t
91 xfs_max_file_offset(
92         unsigned int            blockshift)
93 {
94         unsigned int            pagefactor = 1;
95         unsigned int            bitshift = BITS_PER_LONG - 1;
96
97         /* Figure out maximum filesize, on Linux this can depend on
98          * the filesystem blocksize (on 32 bit platforms).
99          * __block_prepare_write does this in an [unsigned] long...
100          *      page->index << (PAGE_CACHE_SHIFT - bbits)
101          * So, for page sized blocks (4K on 32 bit platforms),
102          * this wraps at around 8Tb (hence MAX_LFS_FILESIZE which is
103          *      (((u64)PAGE_CACHE_SIZE << (BITS_PER_LONG-1))-1)
104          * but for smaller blocksizes it is less (bbits = log2 bsize).
105          * Note1: get_block_t takes a long (implicit cast from above)
106          * Note2: The Large Block Device (LBD and HAVE_SECTOR_T) patch
107          * can optionally convert the [unsigned] long from above into
108          * an [unsigned] long long.
109          */
110
111 #if BITS_PER_LONG == 32
112 # if defined(CONFIG_LBD)
113         ASSERT(sizeof(sector_t) == 8);
114         pagefactor = PAGE_CACHE_SIZE;
115         bitshift = BITS_PER_LONG;
116 # else
117         pagefactor = PAGE_CACHE_SIZE >> (PAGE_CACHE_SHIFT - blockshift);
118 # endif
119 #endif
120
121         return (((__uint64_t)pagefactor) << bitshift) - 1;
122 }
123
124 STATIC __inline__ void
125 xfs_set_inodeops(
126         struct inode            *inode)
127 {
128         switch (inode->i_mode & S_IFMT) {
129         case S_IFREG:
130                 inode->i_op = &linvfs_file_inode_operations;
131                 inode->i_fop = &linvfs_file_operations;
132                 inode->i_mapping->a_ops = &linvfs_aops;
133                 break;
134         case S_IFDIR:
135                 inode->i_op = &linvfs_dir_inode_operations;
136                 inode->i_fop = &linvfs_dir_operations;
137                 break;
138         case S_IFLNK:
139                 inode->i_op = &linvfs_symlink_inode_operations;
140                 if (inode->i_blocks)
141                         inode->i_mapping->a_ops = &linvfs_aops;
142                 break;
143         default:
144                 inode->i_op = &linvfs_file_inode_operations;
145                 init_special_inode(inode, inode->i_mode, inode->i_rdev);
146                 break;
147         }
148 }
149
150 STATIC __inline__ void
151 xfs_revalidate_inode(
152         xfs_mount_t             *mp,
153         vnode_t                 *vp,
154         xfs_inode_t             *ip)
155 {
156         struct inode            *inode = LINVFS_GET_IP(vp);
157
158         inode->i_mode   = ip->i_d.di_mode;
159         inode->i_nlink  = ip->i_d.di_nlink;
160         inode->i_uid    = ip->i_d.di_uid;
161         inode->i_gid    = ip->i_d.di_gid;
162
163         switch (inode->i_mode & S_IFMT) {
164         case S_IFBLK:
165         case S_IFCHR:
166                 inode->i_rdev =
167                         MKDEV(sysv_major(ip->i_df.if_u2.if_rdev) & 0x1ff,
168                               sysv_minor(ip->i_df.if_u2.if_rdev));
169                 break;
170         default:
171                 inode->i_rdev = 0;
172                 break;
173         }
174
175         inode->i_blksize = xfs_preferred_iosize(mp);
176         inode->i_generation = ip->i_d.di_gen;
177         i_size_write(inode, ip->i_d.di_size);
178         inode->i_blocks =
179                 XFS_FSB_TO_BB(mp, ip->i_d.di_nblocks + ip->i_delayed_blks);
180         inode->i_atime.tv_sec   = ip->i_d.di_atime.t_sec;
181         inode->i_atime.tv_nsec  = ip->i_d.di_atime.t_nsec;
182         inode->i_mtime.tv_sec   = ip->i_d.di_mtime.t_sec;
183         inode->i_mtime.tv_nsec  = ip->i_d.di_mtime.t_nsec;
184         inode->i_ctime.tv_sec   = ip->i_d.di_ctime.t_sec;
185         inode->i_ctime.tv_nsec  = ip->i_d.di_ctime.t_nsec;
186         if (ip->i_d.di_flags & XFS_DIFLAG_IMMUTABLE)
187                 inode->i_flags |= S_IMMUTABLE;
188         else
189                 inode->i_flags &= ~S_IMMUTABLE;
190         if (ip->i_d.di_flags & XFS_DIFLAG_APPEND)
191                 inode->i_flags |= S_APPEND;
192         else
193                 inode->i_flags &= ~S_APPEND;
194         if (ip->i_d.di_flags & XFS_DIFLAG_SYNC)
195                 inode->i_flags |= S_SYNC;
196         else
197                 inode->i_flags &= ~S_SYNC;
198         if (ip->i_d.di_flags & XFS_DIFLAG_NOATIME)
199                 inode->i_flags |= S_NOATIME;
200         else
201                 inode->i_flags &= ~S_NOATIME;
202         vp->v_flag &= ~VMODIFIED;
203 }
204
205 void
206 xfs_initialize_vnode(
207         bhv_desc_t              *bdp,
208         vnode_t                 *vp,
209         bhv_desc_t              *inode_bhv,
210         int                     unlock)
211 {
212         xfs_inode_t             *ip = XFS_BHVTOI(inode_bhv);
213         struct inode            *inode = LINVFS_GET_IP(vp);
214
215         if (!inode_bhv->bd_vobj) {
216                 vp->v_vfsp = bhvtovfs(bdp);
217                 bhv_desc_init(inode_bhv, ip, vp, &xfs_vnodeops);
218                 bhv_insert(VN_BHV_HEAD(vp), inode_bhv);
219         }
220
221         /*
222          * We need to set the ops vectors, and unlock the inode, but if
223          * we have been called during the new inode create process, it is
224          * too early to fill in the Linux inode.  We will get called a
225          * second time once the inode is properly set up, and then we can
226          * finish our work.
227          */
228         if (ip->i_d.di_mode != 0 && unlock && (inode->i_state & I_NEW)) {
229                 xfs_revalidate_inode(XFS_BHVTOM(bdp), vp, ip);
230                 xfs_set_inodeops(inode);
231         
232                 ip->i_flags &= ~XFS_INEW;
233                 barrier();
234
235                 unlock_new_inode(inode);
236         }
237 }
238
239 int
240 xfs_blkdev_get(
241         xfs_mount_t             *mp,
242         const char              *name,
243         struct block_device     **bdevp)
244 {
245         int                     error = 0;
246
247         *bdevp = open_bdev_excl(name, 0, mp);
248         if (IS_ERR(*bdevp)) {
249                 error = PTR_ERR(*bdevp);
250                 printk("XFS: Invalid device [%s], error=%d\n", name, error);
251         }
252
253         return -error;
254 }
255
256 void
257 xfs_blkdev_put(
258         struct block_device     *bdev)
259 {
260         if (bdev)
261                 close_bdev_excl(bdev);
262 }
263
264 /*
265  * Try to write out the superblock using barriers.
266  */
267 STATIC int
268 xfs_barrier_test(
269         xfs_mount_t     *mp)
270 {
271         xfs_buf_t       *sbp = xfs_getsb(mp, 0);
272         int             error;
273
274         XFS_BUF_UNDONE(sbp);
275         XFS_BUF_UNREAD(sbp);
276         XFS_BUF_UNDELAYWRITE(sbp);
277         XFS_BUF_WRITE(sbp);
278         XFS_BUF_UNASYNC(sbp);
279         XFS_BUF_ORDERED(sbp);
280
281         xfsbdstrat(mp, sbp);
282         error = xfs_iowait(sbp);
283
284         /*
285          * Clear all the flags we set and possible error state in the
286          * buffer.  We only did the write to try out whether barriers
287          * worked and shouldn't leave any traces in the superblock
288          * buffer.
289          */
290         XFS_BUF_DONE(sbp);
291         XFS_BUF_ERROR(sbp, 0);
292         XFS_BUF_UNORDERED(sbp);
293
294         xfs_buf_relse(sbp);
295         return error;
296 }
297
298 void
299 xfs_mountfs_check_barriers(xfs_mount_t *mp)
300 {
301         int error;
302
303         if (mp->m_logdev_targp != mp->m_ddev_targp) {
304                 xfs_fs_cmn_err(CE_NOTE, mp,
305                   "Disabling barriers, not supported with external log device");
306                 mp->m_flags &= ~XFS_MOUNT_BARRIER;
307                 return;
308         }
309
310         if (mp->m_ddev_targp->bt_bdev->bd_disk->queue->ordered ==
311                                         QUEUE_ORDERED_NONE) {
312                 xfs_fs_cmn_err(CE_NOTE, mp,
313                   "Disabling barriers, not supported by the underlying device");
314                 mp->m_flags &= ~XFS_MOUNT_BARRIER;
315                 return;
316         }
317
318         error = xfs_barrier_test(mp);
319         if (error) {
320                 xfs_fs_cmn_err(CE_NOTE, mp,
321                   "Disabling barriers, trial barrier write failed");
322                 mp->m_flags &= ~XFS_MOUNT_BARRIER;
323                 return;
324         }
325 }
326
327 void
328 xfs_blkdev_issue_flush(
329         xfs_buftarg_t           *buftarg)
330 {
331         blkdev_issue_flush(buftarg->bt_bdev, NULL);
332 }
333
334 STATIC struct inode *
335 linvfs_alloc_inode(
336         struct super_block      *sb)
337 {
338         vnode_t                 *vp;
339
340         vp = kmem_cache_alloc(xfs_vnode_zone, kmem_flags_convert(KM_SLEEP));
341         if (!vp)
342                 return NULL;
343         return LINVFS_GET_IP(vp);
344 }
345
346 STATIC void
347 linvfs_destroy_inode(
348         struct inode            *inode)
349 {
350         kmem_zone_free(xfs_vnode_zone, LINVFS_GET_VP(inode));
351 }
352
353 STATIC void
354 linvfs_inode_init_once(
355         void                    *data,
356         kmem_cache_t            *cachep,
357         unsigned long           flags)
358 {
359         vnode_t                 *vp = (vnode_t *)data;
360
361         if ((flags & (SLAB_CTOR_VERIFY|SLAB_CTOR_CONSTRUCTOR)) ==
362             SLAB_CTOR_CONSTRUCTOR)
363                 inode_init_once(LINVFS_GET_IP(vp));
364 }
365
366 STATIC int
367 linvfs_init_zones(void)
368 {
369         xfs_vnode_zone = kmem_cache_create("xfs_vnode",
370                                 sizeof(vnode_t), 0, SLAB_RECLAIM_ACCOUNT,
371                                 linvfs_inode_init_once, NULL);
372         if (!xfs_vnode_zone)
373                 goto out;
374
375         xfs_ioend_zone = kmem_zone_init(sizeof(xfs_ioend_t), "xfs_ioend");
376         if (!xfs_ioend_zone)
377                 goto out_destroy_vnode_zone;
378
379         xfs_ioend_pool = mempool_create(4 * MAX_BUF_PER_PAGE,
380                         mempool_alloc_slab, mempool_free_slab,
381                         xfs_ioend_zone);
382         if (!xfs_ioend_pool)
383                 goto out_free_ioend_zone;
384
385         return 0;
386
387
388  out_free_ioend_zone:
389         kmem_zone_destroy(xfs_ioend_zone);
390  out_destroy_vnode_zone:
391         kmem_zone_destroy(xfs_vnode_zone);
392  out:
393         return -ENOMEM;
394 }
395
396 STATIC void
397 linvfs_destroy_zones(void)
398 {
399         mempool_destroy(xfs_ioend_pool);
400         kmem_zone_destroy(xfs_vnode_zone);
401         kmem_zone_destroy(xfs_ioend_zone);
402 }
403
404 /*
405  * Attempt to flush the inode, this will actually fail
406  * if the inode is pinned, but we dirty the inode again
407  * at the point when it is unpinned after a log write,
408  * since this is when the inode itself becomes flushable. 
409  */
410 STATIC int
411 linvfs_write_inode(
412         struct inode            *inode,
413         int                     sync)
414 {
415         vnode_t                 *vp = LINVFS_GET_VP(inode);
416         int                     error = 0, flags = FLUSH_INODE;
417
418         if (vp) {
419                 vn_trace_entry(vp, __FUNCTION__, (inst_t *)__return_address);
420                 if (sync)
421                         flags |= FLUSH_SYNC;
422                 VOP_IFLUSH(vp, flags, error);
423                 if (error == EAGAIN) {
424                         if (sync)
425                                 VOP_IFLUSH(vp, flags | FLUSH_LOG, error);
426                         else
427                                 error = 0;
428                 }
429         }
430
431         return -error;
432 }
433
434 STATIC void
435 linvfs_clear_inode(
436         struct inode            *inode)
437 {
438         vnode_t                 *vp = LINVFS_GET_VP(inode);
439         int                     error, cache;
440
441         vn_trace_entry(vp, "clear_inode", (inst_t *)__return_address);
442
443         XFS_STATS_INC(vn_rele);
444         XFS_STATS_INC(vn_remove);
445         XFS_STATS_INC(vn_reclaim);
446         XFS_STATS_DEC(vn_active);
447
448         /*
449          * This can happen because xfs_iget_core calls xfs_idestroy if we
450          * find an inode with di_mode == 0 but without IGET_CREATE set.
451          */
452         if (vp->v_fbhv)
453                 VOP_INACTIVE(vp, NULL, cache);
454
455         VN_LOCK(vp);
456         vp->v_flag &= ~VMODIFIED;
457         VN_UNLOCK(vp, 0);
458
459         if (vp->v_fbhv) {
460                 VOP_RECLAIM(vp, error);
461                 if (error)
462                         panic("vn_purge: cannot reclaim");
463         }
464
465         ASSERT(vp->v_fbhv == NULL);
466
467 #ifdef XFS_VNODE_TRACE
468         ktrace_free(vp->v_trace);
469 #endif
470 }
471
472 /*
473  * Enqueue a work item to be picked up by the vfs xfssyncd thread.
474  * Doing this has two advantages:
475  * - It saves on stack space, which is tight in certain situations
476  * - It can be used (with care) as a mechanism to avoid deadlocks.
477  * Flushing while allocating in a full filesystem requires both.
478  */
479 STATIC void
480 xfs_syncd_queue_work(
481         struct vfs      *vfs,
482         void            *data,
483         void            (*syncer)(vfs_t *, void *))
484 {
485         vfs_sync_work_t *work;
486
487         work = kmem_alloc(sizeof(struct vfs_sync_work), KM_SLEEP);
488         INIT_LIST_HEAD(&work->w_list);
489         work->w_syncer = syncer;
490         work->w_data = data;
491         work->w_vfs = vfs;
492         spin_lock(&vfs->vfs_sync_lock);
493         list_add_tail(&work->w_list, &vfs->vfs_sync_list);
494         spin_unlock(&vfs->vfs_sync_lock);
495         wake_up_process(vfs->vfs_sync_task);
496 }
497
498 /*
499  * Flush delayed allocate data, attempting to free up reserved space
500  * from existing allocations.  At this point a new allocation attempt
501  * has failed with ENOSPC and we are in the process of scratching our
502  * heads, looking about for more room...
503  */
504 STATIC void
505 xfs_flush_inode_work(
506         vfs_t           *vfs,
507         void            *inode)
508 {
509         filemap_flush(((struct inode *)inode)->i_mapping);
510         iput((struct inode *)inode);
511 }
512
513 void
514 xfs_flush_inode(
515         xfs_inode_t     *ip)
516 {
517         struct inode    *inode = LINVFS_GET_IP(XFS_ITOV(ip));
518         struct vfs      *vfs = XFS_MTOVFS(ip->i_mount);
519
520         igrab(inode);
521         xfs_syncd_queue_work(vfs, inode, xfs_flush_inode_work);
522         delay(msecs_to_jiffies(500));
523 }
524
525 /*
526  * This is the "bigger hammer" version of xfs_flush_inode_work...
527  * (IOW, "If at first you don't succeed, use a Bigger Hammer").
528  */
529 STATIC void
530 xfs_flush_device_work(
531         vfs_t           *vfs,
532         void            *inode)
533 {
534         sync_blockdev(vfs->vfs_super->s_bdev);
535         iput((struct inode *)inode);
536 }
537
538 void
539 xfs_flush_device(
540         xfs_inode_t     *ip)
541 {
542         struct inode    *inode = LINVFS_GET_IP(XFS_ITOV(ip));
543         struct vfs      *vfs = XFS_MTOVFS(ip->i_mount);
544
545         igrab(inode);
546         xfs_syncd_queue_work(vfs, inode, xfs_flush_device_work);
547         delay(msecs_to_jiffies(500));
548         xfs_log_force(ip->i_mount, (xfs_lsn_t)0, XFS_LOG_FORCE|XFS_LOG_SYNC);
549 }
550
551 #define SYNCD_FLAGS     (SYNC_FSDATA|SYNC_BDFLUSH|SYNC_ATTR)
552 STATIC void
553 vfs_sync_worker(
554         vfs_t           *vfsp,
555         void            *unused)
556 {
557         int             error;
558
559         if (!(vfsp->vfs_flag & VFS_RDONLY))
560                 VFS_SYNC(vfsp, SYNCD_FLAGS, NULL, error);
561         vfsp->vfs_sync_seq++;
562         wmb();
563         wake_up(&vfsp->vfs_wait_single_sync_task);
564 }
565
566 STATIC int
567 xfssyncd(
568         void                    *arg)
569 {
570         long                    timeleft;
571         vfs_t                   *vfsp = (vfs_t *) arg;
572         struct vfs_sync_work    *work, *n;
573         LIST_HEAD               (tmp);
574
575         timeleft = xfs_syncd_centisecs * msecs_to_jiffies(10);
576         for (;;) {
577                 timeleft = schedule_timeout_interruptible(timeleft);
578                 /* swsusp */
579                 try_to_freeze();
580                 if (kthread_should_stop() && list_empty(&vfsp->vfs_sync_list))
581                         break;
582
583                 spin_lock(&vfsp->vfs_sync_lock);
584                 /*
585                  * We can get woken by laptop mode, to do a sync -
586                  * that's the (only!) case where the list would be
587                  * empty with time remaining.
588                  */
589                 if (!timeleft || list_empty(&vfsp->vfs_sync_list)) {
590                         if (!timeleft)
591                                 timeleft = xfs_syncd_centisecs *
592                                                         msecs_to_jiffies(10);
593                         INIT_LIST_HEAD(&vfsp->vfs_sync_work.w_list);
594                         list_add_tail(&vfsp->vfs_sync_work.w_list,
595                                         &vfsp->vfs_sync_list);
596                 }
597                 list_for_each_entry_safe(work, n, &vfsp->vfs_sync_list, w_list)
598                         list_move(&work->w_list, &tmp);
599                 spin_unlock(&vfsp->vfs_sync_lock);
600
601                 list_for_each_entry_safe(work, n, &tmp, w_list) {
602                         (*work->w_syncer)(vfsp, work->w_data);
603                         list_del(&work->w_list);
604                         if (work == &vfsp->vfs_sync_work)
605                                 continue;
606                         kmem_free(work, sizeof(struct vfs_sync_work));
607                 }
608         }
609
610         return 0;
611 }
612
613 STATIC int
614 linvfs_start_syncd(
615         vfs_t                   *vfsp)
616 {
617         vfsp->vfs_sync_work.w_syncer = vfs_sync_worker;
618         vfsp->vfs_sync_work.w_vfs = vfsp;
619         vfsp->vfs_sync_task = kthread_run(xfssyncd, vfsp, "xfssyncd");
620         if (IS_ERR(vfsp->vfs_sync_task))
621                 return -PTR_ERR(vfsp->vfs_sync_task);
622         return 0;
623 }
624
625 STATIC void
626 linvfs_stop_syncd(
627         vfs_t                   *vfsp)
628 {
629         kthread_stop(vfsp->vfs_sync_task);
630 }
631
632 STATIC void
633 linvfs_put_super(
634         struct super_block      *sb)
635 {
636         vfs_t                   *vfsp = LINVFS_GET_VFS(sb);
637         int                     error;
638
639         linvfs_stop_syncd(vfsp);
640         VFS_SYNC(vfsp, SYNC_ATTR|SYNC_DELWRI, NULL, error);
641         if (!error)
642                 VFS_UNMOUNT(vfsp, 0, NULL, error);
643         if (error) {
644                 printk("XFS unmount got error %d\n", error);
645                 printk("%s: vfsp/0x%p left dangling!\n", __FUNCTION__, vfsp);
646                 return;
647         }
648
649         vfs_deallocate(vfsp);
650 }
651
652 STATIC void
653 linvfs_write_super(
654         struct super_block      *sb)
655 {
656         vfs_t                   *vfsp = LINVFS_GET_VFS(sb);
657         int                     error;
658
659         if (sb->s_flags & MS_RDONLY) {
660                 sb->s_dirt = 0; /* paranoia */
661                 return;
662         }
663         /* Push the log and superblock a little */
664         VFS_SYNC(vfsp, SYNC_FSDATA, NULL, error);
665         sb->s_dirt = 0;
666 }
667
668 STATIC int
669 linvfs_sync_super(
670         struct super_block      *sb,
671         int                     wait)
672 {
673         vfs_t           *vfsp = LINVFS_GET_VFS(sb);
674         int             error;
675         int             flags = SYNC_FSDATA;
676
677         if (unlikely(sb->s_frozen == SB_FREEZE_WRITE))
678                 flags = SYNC_QUIESCE;
679         else
680                 flags = SYNC_FSDATA | (wait ? SYNC_WAIT : 0);
681
682         VFS_SYNC(vfsp, flags, NULL, error);
683         sb->s_dirt = 0;
684
685         if (unlikely(laptop_mode)) {
686                 int     prev_sync_seq = vfsp->vfs_sync_seq;
687
688                 /*
689                  * The disk must be active because we're syncing.
690                  * We schedule xfssyncd now (now that the disk is
691                  * active) instead of later (when it might not be).
692                  */
693                 wake_up_process(vfsp->vfs_sync_task);
694                 /*
695                  * We have to wait for the sync iteration to complete.
696                  * If we don't, the disk activity caused by the sync
697                  * will come after the sync is completed, and that
698                  * triggers another sync from laptop mode.
699                  */
700                 wait_event(vfsp->vfs_wait_single_sync_task,
701                                 vfsp->vfs_sync_seq != prev_sync_seq);
702         }
703
704         return -error;
705 }
706
707 STATIC int
708 linvfs_statfs(
709         struct super_block      *sb,
710         struct kstatfs          *statp)
711 {
712         vfs_t                   *vfsp = LINVFS_GET_VFS(sb);
713         int                     error;
714
715         VFS_STATVFS(vfsp, statp, NULL, error);
716         return -error;
717 }
718
719 STATIC int
720 linvfs_remount(
721         struct super_block      *sb,
722         int                     *flags,
723         char                    *options)
724 {
725         vfs_t                   *vfsp = LINVFS_GET_VFS(sb);
726         struct xfs_mount_args   *args = xfs_args_allocate(sb);
727         int                     error;
728
729         VFS_PARSEARGS(vfsp, options, args, 1, error);
730         if (!error)
731                 VFS_MNTUPDATE(vfsp, flags, args, error);
732         kmem_free(args, sizeof(*args));
733         return -error;
734 }
735
736 STATIC void
737 linvfs_freeze_fs(
738         struct super_block      *sb)
739 {
740         VFS_FREEZE(LINVFS_GET_VFS(sb));
741 }
742
743 STATIC int
744 linvfs_show_options(
745         struct seq_file         *m,
746         struct vfsmount         *mnt)
747 {
748         struct vfs              *vfsp = LINVFS_GET_VFS(mnt->mnt_sb);
749         int                     error;
750
751         VFS_SHOWARGS(vfsp, m, error);
752         return error;
753 }
754
755 STATIC int
756 linvfs_quotasync(
757         struct super_block      *sb,
758         int                     type)
759 {
760         struct vfs              *vfsp = LINVFS_GET_VFS(sb);
761         int                     error;
762
763         VFS_QUOTACTL(vfsp, Q_XQUOTASYNC, 0, (caddr_t)NULL, error);
764         return -error;
765 }
766
767 STATIC int
768 linvfs_getxstate(
769         struct super_block      *sb,
770         struct fs_quota_stat    *fqs)
771 {
772         struct vfs              *vfsp = LINVFS_GET_VFS(sb);
773         int                     error;
774
775         VFS_QUOTACTL(vfsp, Q_XGETQSTAT, 0, (caddr_t)fqs, error);
776         return -error;
777 }
778
779 STATIC int
780 linvfs_setxstate(
781         struct super_block      *sb,
782         unsigned int            flags,
783         int                     op)
784 {
785         struct vfs              *vfsp = LINVFS_GET_VFS(sb);
786         int                     error;
787
788         VFS_QUOTACTL(vfsp, op, 0, (caddr_t)&flags, error);
789         return -error;
790 }
791
792 STATIC int
793 linvfs_getxquota(
794         struct super_block      *sb,
795         int                     type,
796         qid_t                   id,
797         struct fs_disk_quota    *fdq)
798 {
799         struct vfs              *vfsp = LINVFS_GET_VFS(sb);
800         int                     error, getmode;
801
802         getmode = (type == USRQUOTA) ? Q_XGETQUOTA :
803                  ((type == GRPQUOTA) ? Q_XGETGQUOTA : Q_XGETPQUOTA);
804         VFS_QUOTACTL(vfsp, getmode, id, (caddr_t)fdq, error);
805         return -error;
806 }
807
808 STATIC int
809 linvfs_setxquota(
810         struct super_block      *sb,
811         int                     type,
812         qid_t                   id,
813         struct fs_disk_quota    *fdq)
814 {
815         struct vfs              *vfsp = LINVFS_GET_VFS(sb);
816         int                     error, setmode;
817
818         setmode = (type == USRQUOTA) ? Q_XSETQLIM :
819                  ((type == GRPQUOTA) ? Q_XSETGQLIM : Q_XSETPQLIM);
820         VFS_QUOTACTL(vfsp, setmode, id, (caddr_t)fdq, error);
821         return -error;
822 }
823
824 STATIC int
825 linvfs_fill_super(
826         struct super_block      *sb,
827         void                    *data,
828         int                     silent)
829 {
830         vnode_t                 *rootvp;
831         struct vfs              *vfsp = vfs_allocate();
832         struct xfs_mount_args   *args = xfs_args_allocate(sb);
833         struct kstatfs          statvfs;
834         int                     error, error2;
835
836         vfsp->vfs_super = sb;
837         LINVFS_SET_VFS(sb, vfsp);
838         if (sb->s_flags & MS_RDONLY)
839                 vfsp->vfs_flag |= VFS_RDONLY;
840         bhv_insert_all_vfsops(vfsp);
841
842         VFS_PARSEARGS(vfsp, (char *)data, args, 0, error);
843         if (error) {
844                 bhv_remove_all_vfsops(vfsp, 1);
845                 goto fail_vfsop;
846         }
847
848         sb_min_blocksize(sb, BBSIZE);
849 #ifdef CONFIG_XFS_EXPORT
850         sb->s_export_op = &linvfs_export_ops;
851 #endif
852         sb->s_qcop = &linvfs_qops;
853         sb->s_op = &linvfs_sops;
854
855         VFS_MOUNT(vfsp, args, NULL, error);
856         if (error) {
857                 bhv_remove_all_vfsops(vfsp, 1);
858                 goto fail_vfsop;
859         }
860
861         VFS_STATVFS(vfsp, &statvfs, NULL, error);
862         if (error)
863                 goto fail_unmount;
864
865         sb->s_dirt = 1;
866         sb->s_magic = statvfs.f_type;
867         sb->s_blocksize = statvfs.f_bsize;
868         sb->s_blocksize_bits = ffs(statvfs.f_bsize) - 1;
869         sb->s_maxbytes = xfs_max_file_offset(sb->s_blocksize_bits);
870         sb->s_time_gran = 1;
871         set_posix_acl_flag(sb);
872
873         VFS_ROOT(vfsp, &rootvp, error);
874         if (error)
875                 goto fail_unmount;
876
877         sb->s_root = d_alloc_root(LINVFS_GET_IP(rootvp));
878         if (!sb->s_root) {
879                 error = ENOMEM;
880                 goto fail_vnrele;
881         }
882         if (is_bad_inode(sb->s_root->d_inode)) {
883                 error = EINVAL;
884                 goto fail_vnrele;
885         }
886         if ((error = linvfs_start_syncd(vfsp)))
887                 goto fail_vnrele;
888         vn_trace_exit(rootvp, __FUNCTION__, (inst_t *)__return_address);
889
890         kmem_free(args, sizeof(*args));
891         return 0;
892
893 fail_vnrele:
894         if (sb->s_root) {
895                 dput(sb->s_root);
896                 sb->s_root = NULL;
897         } else {
898                 VN_RELE(rootvp);
899         }
900
901 fail_unmount:
902         VFS_UNMOUNT(vfsp, 0, NULL, error2);
903
904 fail_vfsop:
905         vfs_deallocate(vfsp);
906         kmem_free(args, sizeof(*args));
907         return -error;
908 }
909
910 STATIC struct super_block *
911 linvfs_get_sb(
912         struct file_system_type *fs_type,
913         int                     flags,
914         const char              *dev_name,
915         void                    *data)
916 {
917         return get_sb_bdev(fs_type, flags, dev_name, data, linvfs_fill_super);
918 }
919
920 STATIC struct super_operations linvfs_sops = {
921         .alloc_inode            = linvfs_alloc_inode,
922         .destroy_inode          = linvfs_destroy_inode,
923         .write_inode            = linvfs_write_inode,
924         .clear_inode            = linvfs_clear_inode,
925         .put_super              = linvfs_put_super,
926         .write_super            = linvfs_write_super,
927         .sync_fs                = linvfs_sync_super,
928         .write_super_lockfs     = linvfs_freeze_fs,
929         .statfs                 = linvfs_statfs,
930         .remount_fs             = linvfs_remount,
931         .show_options           = linvfs_show_options,
932 };
933
934 STATIC struct quotactl_ops linvfs_qops = {
935         .quota_sync             = linvfs_quotasync,
936         .get_xstate             = linvfs_getxstate,
937         .set_xstate             = linvfs_setxstate,
938         .get_xquota             = linvfs_getxquota,
939         .set_xquota             = linvfs_setxquota,
940 };
941
942 STATIC struct file_system_type xfs_fs_type = {
943         .owner                  = THIS_MODULE,
944         .name                   = "xfs",
945         .get_sb                 = linvfs_get_sb,
946         .kill_sb                = kill_block_super,
947         .fs_flags               = FS_REQUIRES_DEV,
948 };
949
950
951 STATIC int __init
952 init_xfs_fs( void )
953 {
954         int                     error;
955         struct sysinfo          si;
956         static char             message[] __initdata = KERN_INFO \
957                 XFS_VERSION_STRING " with " XFS_BUILD_OPTIONS " enabled\n";
958
959         printk(message);
960
961         si_meminfo(&si);
962         xfs_physmem = si.totalram;
963
964         ktrace_init(64);
965
966         error = linvfs_init_zones();
967         if (error < 0)
968                 goto undo_zones;
969
970         error = xfs_buf_init();
971         if (error < 0)
972                 goto undo_buffers;
973
974         vn_init();
975         xfs_init();
976         uuid_init();
977         vfs_initquota();
978
979         error = register_filesystem(&xfs_fs_type);
980         if (error)
981                 goto undo_register;
982         XFS_DM_INIT(&xfs_fs_type);
983         return 0;
984
985 undo_register:
986         xfs_buf_terminate();
987
988 undo_buffers:
989         linvfs_destroy_zones();
990
991 undo_zones:
992         return error;
993 }
994
995 STATIC void __exit
996 exit_xfs_fs( void )
997 {
998         vfs_exitquota();
999         XFS_DM_EXIT(&xfs_fs_type);
1000         unregister_filesystem(&xfs_fs_type);
1001         xfs_cleanup();
1002         xfs_buf_terminate();
1003         linvfs_destroy_zones();
1004         ktrace_uninit();
1005 }
1006
1007 module_init(init_xfs_fs);
1008 module_exit(exit_xfs_fs);
1009
1010 MODULE_AUTHOR("Silicon Graphics, Inc.");
1011 MODULE_DESCRIPTION(XFS_VERSION_STRING " with " XFS_BUILD_OPTIONS " enabled");
1012 MODULE_LICENSE("GPL");