[XFS] Check if there is first behavior before calling VOP_RECLAIM from
[linux-2.6/verdex.git] / fs / xfs / linux-2.6 / xfs_super.c
blobcd3f8b3270ac8ce0228d993e76512445d25fda95
1 /*
2 * Copyright (c) 2000-2005 Silicon Graphics, Inc. All Rights Reserved.
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.
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.
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.
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.
23 * Contact information: Silicon Graphics, Inc., 1600 Amphitheatre Pkwy,
24 * Mountain View, CA 94043, or:
26 * http://www.sgi.com
28 * For further information regarding this notice, see:
30 * http://oss.sgi.com/projects/GenInfo/SGIGPLNoticeExplan/
33 #include "xfs.h"
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"
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>
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;
82 STATIC struct xfs_mount_args *
83 xfs_args_allocate(
84 struct super_block *sb)
86 struct xfs_mount_args *args;
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);
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;
100 /* Default to 32 bit inodes on Linux all the time */
101 args->flags |= XFSMNT_32BITINODES;
103 return args;
106 __uint64_t
107 xfs_max_file_offset(
108 unsigned int blockshift)
110 unsigned int pagefactor = 1;
111 unsigned int bitshift = BITS_PER_LONG - 1;
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.
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
137 return (((__uint64_t)pagefactor) << bitshift) - 1;
140 STATIC __inline__ void
141 xfs_set_inodeops(
142 struct inode *inode)
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;
166 STATIC __inline__ void
167 xfs_revalidate_inode(
168 xfs_mount_t *mp,
169 vnode_t *vp,
170 xfs_inode_t *ip)
172 struct inode *inode = LINVFS_GET_IP(vp);
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;
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;
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;
221 void
222 xfs_initialize_vnode(
223 bhv_desc_t *bdp,
224 vnode_t *vp,
225 bhv_desc_t *inode_bhv,
226 int unlock)
228 xfs_inode_t *ip = XFS_BHVTOI(inode_bhv);
229 struct inode *inode = LINVFS_GET_IP(vp);
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);
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.
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);
248 ip->i_flags &= ~XFS_INEW;
249 barrier();
251 unlock_new_inode(inode);
256 xfs_blkdev_get(
257 xfs_mount_t *mp,
258 const char *name,
259 struct block_device **bdevp)
261 int error = 0;
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);
269 return -error;
272 void
273 xfs_blkdev_put(
274 struct block_device *bdev)
276 if (bdev)
277 close_bdev_excl(bdev);
281 STATIC struct inode *
282 linvfs_alloc_inode(
283 struct super_block *sb)
285 vnode_t *vp;
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);
293 STATIC void
294 linvfs_destroy_inode(
295 struct inode *inode)
297 kmem_zone_free(xfs_vnode_zone, LINVFS_GET_VP(inode));
300 STATIC void
301 linvfs_inode_init_once(
302 void *data,
303 kmem_cache_t *cachep,
304 unsigned long flags)
306 vnode_t *vp = (vnode_t *)data;
308 if ((flags & (SLAB_CTOR_VERIFY|SLAB_CTOR_CONSTRUCTOR)) ==
309 SLAB_CTOR_CONSTRUCTOR)
310 inode_init_once(LINVFS_GET_IP(vp));
313 STATIC int
314 linvfs_init_zones(void)
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;
322 xfs_ioend_zone = kmem_zone_init(sizeof(xfs_ioend_t), "xfs_ioend");
323 if (!xfs_ioend_zone)
324 goto out_destroy_vnode_zone;
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;
332 return 0;
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;
343 STATIC void
344 linvfs_destroy_zones(void)
346 mempool_destroy(xfs_ioend_pool);
347 kmem_zone_destroy(xfs_vnode_zone);
348 kmem_zone_destroy(xfs_ioend_zone);
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.
357 STATIC int
358 linvfs_write_inode(
359 struct inode *inode,
360 int sync)
362 vnode_t *vp = LINVFS_GET_VP(inode);
363 int error = 0, flags = FLUSH_INODE;
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;
378 return -error;
381 STATIC void
382 linvfs_clear_inode(
383 struct inode *inode)
385 vnode_t *vp = LINVFS_GET_VP(inode);
386 int error, cache;
388 vn_trace_entry(vp, "clear_inode", (inst_t *)__return_address);
390 ASSERT(vp->v_fbhv != NULL);
392 XFS_STATS_INC(vn_rele);
393 XFS_STATS_INC(vn_remove);
394 XFS_STATS_INC(vn_reclaim);
395 XFS_STATS_DEC(vn_active);
397 VOP_INACTIVE(vp, NULL, cache);
399 VN_LOCK(vp);
400 vp->v_flag &= ~VMODIFIED;
401 VN_UNLOCK(vp, 0);
403 if (vp->v_fbhv) {
404 VOP_RECLAIM(vp, error);
405 if (error)
406 panic("vn_purge: cannot reclaim");
409 ASSERT(vp->v_fbhv == NULL);
411 #ifdef XFS_VNODE_TRACE
412 ktrace_free(vp->v_trace);
413 #endif
417 * Enqueue a work item to be picked up by the vfs xfssyncd thread.
418 * Doing this has two advantages:
419 * - It saves on stack space, which is tight in certain situations
420 * - It can be used (with care) as a mechanism to avoid deadlocks.
421 * Flushing while allocating in a full filesystem requires both.
423 STATIC void
424 xfs_syncd_queue_work(
425 struct vfs *vfs,
426 void *data,
427 void (*syncer)(vfs_t *, void *))
429 vfs_sync_work_t *work;
431 work = kmem_alloc(sizeof(struct vfs_sync_work), KM_SLEEP);
432 INIT_LIST_HEAD(&work->w_list);
433 work->w_syncer = syncer;
434 work->w_data = data;
435 work->w_vfs = vfs;
436 spin_lock(&vfs->vfs_sync_lock);
437 list_add_tail(&work->w_list, &vfs->vfs_sync_list);
438 spin_unlock(&vfs->vfs_sync_lock);
439 wake_up_process(vfs->vfs_sync_task);
443 * Flush delayed allocate data, attempting to free up reserved space
444 * from existing allocations. At this point a new allocation attempt
445 * has failed with ENOSPC and we are in the process of scratching our
446 * heads, looking about for more room...
448 STATIC void
449 xfs_flush_inode_work(
450 vfs_t *vfs,
451 void *inode)
453 filemap_flush(((struct inode *)inode)->i_mapping);
454 iput((struct inode *)inode);
457 void
458 xfs_flush_inode(
459 xfs_inode_t *ip)
461 struct inode *inode = LINVFS_GET_IP(XFS_ITOV(ip));
462 struct vfs *vfs = XFS_MTOVFS(ip->i_mount);
464 igrab(inode);
465 xfs_syncd_queue_work(vfs, inode, xfs_flush_inode_work);
466 delay(HZ/2);
470 * This is the "bigger hammer" version of xfs_flush_inode_work...
471 * (IOW, "If at first you don't succeed, use a Bigger Hammer").
473 STATIC void
474 xfs_flush_device_work(
475 vfs_t *vfs,
476 void *inode)
478 sync_blockdev(vfs->vfs_super->s_bdev);
479 iput((struct inode *)inode);
482 void
483 xfs_flush_device(
484 xfs_inode_t *ip)
486 struct inode *inode = LINVFS_GET_IP(XFS_ITOV(ip));
487 struct vfs *vfs = XFS_MTOVFS(ip->i_mount);
489 igrab(inode);
490 xfs_syncd_queue_work(vfs, inode, xfs_flush_device_work);
491 delay(HZ/2);
492 xfs_log_force(ip->i_mount, (xfs_lsn_t)0, XFS_LOG_FORCE|XFS_LOG_SYNC);
495 #define SYNCD_FLAGS (SYNC_FSDATA|SYNC_BDFLUSH|SYNC_ATTR)
496 STATIC void
497 vfs_sync_worker(
498 vfs_t *vfsp,
499 void *unused)
501 int error;
503 if (!(vfsp->vfs_flag & VFS_RDONLY))
504 VFS_SYNC(vfsp, SYNCD_FLAGS, NULL, error);
505 vfsp->vfs_sync_seq++;
506 wmb();
507 wake_up(&vfsp->vfs_wait_single_sync_task);
510 STATIC int
511 xfssyncd(
512 void *arg)
514 long timeleft;
515 vfs_t *vfsp = (vfs_t *) arg;
516 struct list_head tmp;
517 struct vfs_sync_work *work, *n;
519 daemonize("xfssyncd");
521 vfsp->vfs_sync_work.w_vfs = vfsp;
522 vfsp->vfs_sync_work.w_syncer = vfs_sync_worker;
523 vfsp->vfs_sync_task = current;
524 wmb();
525 wake_up(&vfsp->vfs_wait_sync_task);
527 INIT_LIST_HEAD(&tmp);
528 timeleft = (xfs_syncd_centisecs * HZ) / 100;
529 for (;;) {
530 set_current_state(TASK_INTERRUPTIBLE);
531 timeleft = schedule_timeout(timeleft);
532 /* swsusp */
533 try_to_freeze();
534 if (vfsp->vfs_flag & VFS_UMOUNT)
535 break;
537 spin_lock(&vfsp->vfs_sync_lock);
539 * We can get woken by laptop mode, to do a sync -
540 * that's the (only!) case where the list would be
541 * empty with time remaining.
543 if (!timeleft || list_empty(&vfsp->vfs_sync_list)) {
544 if (!timeleft)
545 timeleft = (xfs_syncd_centisecs * HZ) / 100;
546 INIT_LIST_HEAD(&vfsp->vfs_sync_work.w_list);
547 list_add_tail(&vfsp->vfs_sync_work.w_list,
548 &vfsp->vfs_sync_list);
550 list_for_each_entry_safe(work, n, &vfsp->vfs_sync_list, w_list)
551 list_move(&work->w_list, &tmp);
552 spin_unlock(&vfsp->vfs_sync_lock);
554 list_for_each_entry_safe(work, n, &tmp, w_list) {
555 (*work->w_syncer)(vfsp, work->w_data);
556 list_del(&work->w_list);
557 if (work == &vfsp->vfs_sync_work)
558 continue;
559 kmem_free(work, sizeof(struct vfs_sync_work));
563 vfsp->vfs_sync_task = NULL;
564 wmb();
565 wake_up(&vfsp->vfs_wait_sync_task);
567 return 0;
570 STATIC int
571 linvfs_start_syncd(
572 vfs_t *vfsp)
574 int pid;
576 pid = kernel_thread(xfssyncd, (void *) vfsp,
577 CLONE_VM | CLONE_FS | CLONE_FILES);
578 if (pid < 0)
579 return -pid;
580 wait_event(vfsp->vfs_wait_sync_task, vfsp->vfs_sync_task);
581 return 0;
584 STATIC void
585 linvfs_stop_syncd(
586 vfs_t *vfsp)
588 vfsp->vfs_flag |= VFS_UMOUNT;
589 wmb();
591 wake_up_process(vfsp->vfs_sync_task);
592 wait_event(vfsp->vfs_wait_sync_task, !vfsp->vfs_sync_task);
595 STATIC void
596 linvfs_put_super(
597 struct super_block *sb)
599 vfs_t *vfsp = LINVFS_GET_VFS(sb);
600 int error;
602 linvfs_stop_syncd(vfsp);
603 VFS_SYNC(vfsp, SYNC_ATTR|SYNC_DELWRI, NULL, error);
604 if (!error)
605 VFS_UNMOUNT(vfsp, 0, NULL, error);
606 if (error) {
607 printk("XFS unmount got error %d\n", error);
608 printk("%s: vfsp/0x%p left dangling!\n", __FUNCTION__, vfsp);
609 return;
612 vfs_deallocate(vfsp);
615 STATIC void
616 linvfs_write_super(
617 struct super_block *sb)
619 vfs_t *vfsp = LINVFS_GET_VFS(sb);
620 int error;
622 if (sb->s_flags & MS_RDONLY) {
623 sb->s_dirt = 0; /* paranoia */
624 return;
626 /* Push the log and superblock a little */
627 VFS_SYNC(vfsp, SYNC_FSDATA, NULL, error);
628 sb->s_dirt = 0;
631 STATIC int
632 linvfs_sync_super(
633 struct super_block *sb,
634 int wait)
636 vfs_t *vfsp = LINVFS_GET_VFS(sb);
637 int error;
638 int flags = SYNC_FSDATA;
640 if (unlikely(sb->s_frozen == SB_FREEZE_WRITE))
641 flags = SYNC_QUIESCE;
642 else
643 flags = SYNC_FSDATA | (wait ? SYNC_WAIT : 0);
645 VFS_SYNC(vfsp, flags, NULL, error);
646 sb->s_dirt = 0;
648 if (unlikely(laptop_mode)) {
649 int prev_sync_seq = vfsp->vfs_sync_seq;
652 * The disk must be active because we're syncing.
653 * We schedule xfssyncd now (now that the disk is
654 * active) instead of later (when it might not be).
656 wake_up_process(vfsp->vfs_sync_task);
658 * We have to wait for the sync iteration to complete.
659 * If we don't, the disk activity caused by the sync
660 * will come after the sync is completed, and that
661 * triggers another sync from laptop mode.
663 wait_event(vfsp->vfs_wait_single_sync_task,
664 vfsp->vfs_sync_seq != prev_sync_seq);
667 return -error;
670 STATIC int
671 linvfs_statfs(
672 struct super_block *sb,
673 struct kstatfs *statp)
675 vfs_t *vfsp = LINVFS_GET_VFS(sb);
676 int error;
678 VFS_STATVFS(vfsp, statp, NULL, error);
679 return -error;
682 STATIC int
683 linvfs_remount(
684 struct super_block *sb,
685 int *flags,
686 char *options)
688 vfs_t *vfsp = LINVFS_GET_VFS(sb);
689 struct xfs_mount_args *args = xfs_args_allocate(sb);
690 int error;
692 VFS_PARSEARGS(vfsp, options, args, 1, error);
693 if (!error)
694 VFS_MNTUPDATE(vfsp, flags, args, error);
695 kmem_free(args, sizeof(*args));
696 return -error;
699 STATIC void
700 linvfs_freeze_fs(
701 struct super_block *sb)
703 VFS_FREEZE(LINVFS_GET_VFS(sb));
706 STATIC int
707 linvfs_show_options(
708 struct seq_file *m,
709 struct vfsmount *mnt)
711 struct vfs *vfsp = LINVFS_GET_VFS(mnt->mnt_sb);
712 int error;
714 VFS_SHOWARGS(vfsp, m, error);
715 return error;
718 STATIC int
719 linvfs_getxstate(
720 struct super_block *sb,
721 struct fs_quota_stat *fqs)
723 struct vfs *vfsp = LINVFS_GET_VFS(sb);
724 int error;
726 VFS_QUOTACTL(vfsp, Q_XGETQSTAT, 0, (caddr_t)fqs, error);
727 return -error;
730 STATIC int
731 linvfs_setxstate(
732 struct super_block *sb,
733 unsigned int flags,
734 int op)
736 struct vfs *vfsp = LINVFS_GET_VFS(sb);
737 int error;
739 VFS_QUOTACTL(vfsp, op, 0, (caddr_t)&flags, error);
740 return -error;
743 STATIC int
744 linvfs_getxquota(
745 struct super_block *sb,
746 int type,
747 qid_t id,
748 struct fs_disk_quota *fdq)
750 struct vfs *vfsp = LINVFS_GET_VFS(sb);
751 int error, getmode;
753 getmode = (type == USRQUOTA) ? Q_XGETQUOTA :
754 ((type == GRPQUOTA) ? Q_XGETGQUOTA : Q_XGETPQUOTA);
755 VFS_QUOTACTL(vfsp, getmode, id, (caddr_t)fdq, error);
756 return -error;
759 STATIC int
760 linvfs_setxquota(
761 struct super_block *sb,
762 int type,
763 qid_t id,
764 struct fs_disk_quota *fdq)
766 struct vfs *vfsp = LINVFS_GET_VFS(sb);
767 int error, setmode;
769 setmode = (type == USRQUOTA) ? Q_XSETQLIM :
770 ((type == GRPQUOTA) ? Q_XSETGQLIM : Q_XSETPQLIM);
771 VFS_QUOTACTL(vfsp, setmode, id, (caddr_t)fdq, error);
772 return -error;
775 STATIC int
776 linvfs_fill_super(
777 struct super_block *sb,
778 void *data,
779 int silent)
781 vnode_t *rootvp;
782 struct vfs *vfsp = vfs_allocate();
783 struct xfs_mount_args *args = xfs_args_allocate(sb);
784 struct kstatfs statvfs;
785 int error, error2;
787 vfsp->vfs_super = sb;
788 LINVFS_SET_VFS(sb, vfsp);
789 if (sb->s_flags & MS_RDONLY)
790 vfsp->vfs_flag |= VFS_RDONLY;
791 bhv_insert_all_vfsops(vfsp);
793 VFS_PARSEARGS(vfsp, (char *)data, args, 0, error);
794 if (error) {
795 bhv_remove_all_vfsops(vfsp, 1);
796 goto fail_vfsop;
799 sb_min_blocksize(sb, BBSIZE);
800 #ifdef CONFIG_XFS_EXPORT
801 sb->s_export_op = &linvfs_export_ops;
802 #endif
803 sb->s_qcop = &linvfs_qops;
804 sb->s_op = &linvfs_sops;
806 VFS_MOUNT(vfsp, args, NULL, error);
807 if (error) {
808 bhv_remove_all_vfsops(vfsp, 1);
809 goto fail_vfsop;
812 VFS_STATVFS(vfsp, &statvfs, NULL, error);
813 if (error)
814 goto fail_unmount;
816 sb->s_dirt = 1;
817 sb->s_magic = statvfs.f_type;
818 sb->s_blocksize = statvfs.f_bsize;
819 sb->s_blocksize_bits = ffs(statvfs.f_bsize) - 1;
820 sb->s_maxbytes = xfs_max_file_offset(sb->s_blocksize_bits);
821 sb->s_time_gran = 1;
822 set_posix_acl_flag(sb);
824 VFS_ROOT(vfsp, &rootvp, error);
825 if (error)
826 goto fail_unmount;
828 sb->s_root = d_alloc_root(LINVFS_GET_IP(rootvp));
829 if (!sb->s_root) {
830 error = ENOMEM;
831 goto fail_vnrele;
833 if (is_bad_inode(sb->s_root->d_inode)) {
834 error = EINVAL;
835 goto fail_vnrele;
837 if ((error = linvfs_start_syncd(vfsp)))
838 goto fail_vnrele;
839 vn_trace_exit(rootvp, __FUNCTION__, (inst_t *)__return_address);
841 kmem_free(args, sizeof(*args));
842 return 0;
844 fail_vnrele:
845 if (sb->s_root) {
846 dput(sb->s_root);
847 sb->s_root = NULL;
848 } else {
849 VN_RELE(rootvp);
852 fail_unmount:
853 VFS_UNMOUNT(vfsp, 0, NULL, error2);
855 fail_vfsop:
856 vfs_deallocate(vfsp);
857 kmem_free(args, sizeof(*args));
858 return -error;
861 STATIC struct super_block *
862 linvfs_get_sb(
863 struct file_system_type *fs_type,
864 int flags,
865 const char *dev_name,
866 void *data)
868 return get_sb_bdev(fs_type, flags, dev_name, data, linvfs_fill_super);
871 STATIC struct super_operations linvfs_sops = {
872 .alloc_inode = linvfs_alloc_inode,
873 .destroy_inode = linvfs_destroy_inode,
874 .write_inode = linvfs_write_inode,
875 .clear_inode = linvfs_clear_inode,
876 .put_super = linvfs_put_super,
877 .write_super = linvfs_write_super,
878 .sync_fs = linvfs_sync_super,
879 .write_super_lockfs = linvfs_freeze_fs,
880 .statfs = linvfs_statfs,
881 .remount_fs = linvfs_remount,
882 .show_options = linvfs_show_options,
885 STATIC struct quotactl_ops linvfs_qops = {
886 .get_xstate = linvfs_getxstate,
887 .set_xstate = linvfs_setxstate,
888 .get_xquota = linvfs_getxquota,
889 .set_xquota = linvfs_setxquota,
892 STATIC struct file_system_type xfs_fs_type = {
893 .owner = THIS_MODULE,
894 .name = "xfs",
895 .get_sb = linvfs_get_sb,
896 .kill_sb = kill_block_super,
897 .fs_flags = FS_REQUIRES_DEV,
901 STATIC int __init
902 init_xfs_fs( void )
904 int error;
905 struct sysinfo si;
906 static char message[] __initdata = KERN_INFO \
907 XFS_VERSION_STRING " with " XFS_BUILD_OPTIONS " enabled\n";
909 printk(message);
911 si_meminfo(&si);
912 xfs_physmem = si.totalram;
914 ktrace_init(64);
916 error = linvfs_init_zones();
917 if (error < 0)
918 goto undo_zones;
920 error = pagebuf_init();
921 if (error < 0)
922 goto undo_pagebuf;
924 vn_init();
925 xfs_init();
926 uuid_init();
927 vfs_initquota();
929 error = register_filesystem(&xfs_fs_type);
930 if (error)
931 goto undo_register;
932 XFS_DM_INIT(&xfs_fs_type);
933 return 0;
935 undo_register:
936 pagebuf_terminate();
938 undo_pagebuf:
939 linvfs_destroy_zones();
941 undo_zones:
942 return error;
945 STATIC void __exit
946 exit_xfs_fs( void )
948 vfs_exitquota();
949 XFS_DM_EXIT(&xfs_fs_type);
950 unregister_filesystem(&xfs_fs_type);
951 xfs_cleanup();
952 pagebuf_terminate();
953 linvfs_destroy_zones();
954 ktrace_uninit();
957 module_init(init_xfs_fs);
958 module_exit(exit_xfs_fs);
960 MODULE_AUTHOR("Silicon Graphics, Inc.");
961 MODULE_DESCRIPTION(XFS_VERSION_STRING " with " XFS_BUILD_OPTIONS " enabled");
962 MODULE_LICENSE("GPL");