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