Merge from vendor branch NTPD:
[dragonfly.git] / sys / vfs / gnu / ext2fs / ext2_vfsops.c
1 /*
2  *  modified for EXT2FS support in Lites 1.1
3  *
4  *  Aug 1995, Godmar Back (gback@cs.utah.edu)
5  *  University of Utah, Department of Computer Science
6  */
7 /*      
8  * Copyright (c) 1989, 1991, 1993, 1994 
9  *      The Regents of the University of California.  All rights reserved.
10  *
11  * Redistribution and use in source and binary forms, with or without
12  * modification, are permitted provided that the following conditions
13  * are met:
14  * 1. Redistributions of source code must retain the above copyright
15  *    notice, this list of conditions and the following disclaimer.
16  * 2. Redistributions in binary form must reproduce the above copyright
17  *    notice, this list of conditions and the following disclaimer in the
18  *    documentation and/or other materials provided with the distribution.
19  * 3. All advertising materials mentioning features or use of this software
20  *    must display the following acknowledgement:
21  *      This product includes software developed by the University of
22  *      California, Berkeley and its contributors.
23  * 4. Neither the name of the University nor the names of its contributors
24  *    may be used to endorse or promote products derived from this software
25  *    without specific prior written permission.
26  *
27  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
28  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
29  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
30  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
31  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
32  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
33  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
34  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
35  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
36  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
37  * SUCH DAMAGE.
38  *
39  *      @(#)ffs_vfsops.c        8.8 (Berkeley) 4/18/94
40  *      $FreeBSD: src/sys/gnu/ext2fs/ext2_vfsops.c,v 1.63.2.7 2002/07/01 00:18:51 iedowse Exp $
41  *      $DragonFly: src/sys/vfs/gnu/ext2fs/ext2_vfsops.c,v 1.21 2004/10/12 19:20:55 dillon Exp $
42  */
43
44 #include "opt_quota.h"
45
46 #include <sys/param.h>
47 #include <sys/systm.h>
48 #include <sys/namei.h>
49 #include <sys/proc.h>
50 #include <sys/kernel.h>
51 #include <sys/vnode.h>
52 #include <sys/mount.h>
53 #include <sys/buf.h>
54 #include <sys/conf.h>
55 #include <sys/fcntl.h>
56 #include <sys/disklabel.h>
57 #include <sys/malloc.h>
58 #include <sys/stat.h>
59 #include <sys/buf2.h>
60
61 #include <vfs/ufs/quota.h>
62 #include <vfs/ufs/ufsmount.h>
63 #include <vfs/ufs/inode.h>
64 #include <vfs/ufs/ufs_extern.h>
65
66 #include <vm/vm_zone.h>
67
68 #include "fs.h"
69 #include "ext2_extern.h"
70 #include "ext2_fs.h"
71 #include "ext2_fs_sb.h"
72
73 extern struct vnodeopv_entry_desc ext2_vnodeop_entries[];
74 extern struct vnodeopv_entry_desc ext2_specop_entries[];
75 extern struct vnodeopv_entry_desc ext2_fifoop_entries[];
76
77 static int ext2_fhtovp (struct mount *, struct fid *, struct vnode **);
78 static int ext2_flushfiles (struct mount *mp, int flags, struct thread *td);
79 static int ext2_mount (struct mount *, char *, caddr_t, struct thread *);
80 static int ext2_mountfs (struct vnode *, struct mount *, struct thread *);
81 static int ext2_reload (struct mount *mountp, struct ucred *cred,
82                         struct thread *p);
83 static int ext2_sbupdate (struct ufsmount *, int);
84 static int ext2_statfs (struct mount *, struct statfs *, struct thread *);
85 static int ext2_sync (struct mount *, int, struct thread *);
86 static int ext2_unmount (struct mount *, int, struct thread *);
87 static int ext2_vget (struct mount *, ino_t, struct vnode **);
88 static int ext2_vptofh (struct vnode *, struct fid *);
89
90 static MALLOC_DEFINE(M_EXT2NODE, "EXT2 node", "EXT2 vnode private part");
91
92 static struct vfsops ext2fs_vfsops = {
93         ext2_mount,
94         ufs_start,              /* empty function */
95         ext2_unmount,
96         ufs_root,               /* root inode via vget */
97         ufs_quotactl,           /* does operations associated with quotas */
98         ext2_statfs,
99         ext2_sync,
100         ext2_vget,
101         ext2_fhtovp,
102         ufs_check_export,
103         ext2_vptofh,
104         ext2_init,
105         vfs_stduninit,
106         vfs_stdextattrctl,
107 };
108
109 VFS_SET(ext2fs_vfsops, ext2fs, 0);
110 #define bsd_malloc malloc
111 #define bsd_free free
112
113 static int ext2fs_inode_hash_lock;
114
115 static int      ext2_check_sb_compat (struct ext2_super_block *es,
116                                           dev_t dev, int ronly);
117 static int      compute_sb_data (struct vnode * devvp,
118                                      struct ext2_super_block * es,
119                                      struct ext2_sb_info * fs);
120
121 #ifdef notyet
122 static int ext2_mountroot (void);
123
124 /*
125  * Called by main() when ext2fs is going to be mounted as root.
126  *
127  * Name is updated by mount(8) after booting.
128  */
129 #define ROOTNAME        "root_device"
130
131 static int
132 ext2_mountroot(void)
133 {
134         struct ext2_sb_info *fs;
135         struct mount *mp;
136         struct thread *td = curthread;
137         struct vnode *rootvp;
138         struct ufsmount *ump;
139         u_int size;
140         int error;
141         
142         if ((error = bdevvp(rootdev, &rootvp))) {
143                 printf("ext2_mountroot: can't find rootvp\n");
144                 return (error);
145         }
146         mp = bsd_malloc((u_long)sizeof(struct mount), M_MOUNT, M_WAITOK);
147         bzero((char *)mp, (u_long)sizeof(struct mount));
148         TAILQ_INIT(&mp->mnt_nvnodelist);
149         TAILQ_INIT(&mp->mnt_reservedvnlist);
150         mp->mnt_op = &ext2fs_vfsops;
151         mp->mnt_flag = MNT_RDONLY;
152         if (error = ext2_mountfs(rootvp, mp, td)) {
153                 bsd_free(mp, M_MOUNT);
154                 return (error);
155         }
156         if (error = vfs_lock(mp)) {
157                 (void)ext2_unmount(mp, 0, td);
158                 bsd_free(mp, M_MOUNT);
159                 return (error);
160         }
161         TAILQ_INSERT_HEAD(&mountlist, mp, mnt_list);
162         mp->mnt_flag |= MNT_ROOTFS;
163         mp->mnt_vnodecovered = NULLVP;
164         ump = VFSTOUFS(mp);
165         fs = ump->um_e2fs;
166         bzero(fs->fs_fsmnt, sizeof(fs->fs_fsmnt));
167         fs->fs_fsmnt[0] = '/';
168         bcopy((caddr_t)fs->fs_fsmnt, (caddr_t)mp->mnt_stat.f_mntonname,
169             MNAMELEN);
170         (void) copystr(ROOTNAME, mp->mnt_stat.f_mntfromname, MNAMELEN - 1,
171             &size);
172         bzero(mp->mnt_stat.f_mntfromname + size, MNAMELEN - size);
173         (void)ext2_statfs(mp, &mp->mnt_stat, td);
174         vfs_unlock(mp);
175         inittodr(fs->s_es->s_wtime);            /* this helps to set the time */
176         return (0);
177 }
178 #endif
179
180 /*
181  * VFS Operations.
182  *
183  * mount system call
184  */
185 static int
186 ext2_mount(struct mount *mp, char *path,
187            caddr_t data,        /* this is actually a (struct ufs_args *) */
188            struct thread *td)
189 {
190         struct vnode *devvp;
191         struct ufs_args args;
192         struct ufsmount *ump = 0;
193         struct ext2_sb_info *fs;
194         size_t size;
195         int error, flags;
196         mode_t accessmode;
197         struct ucred *cred;
198         struct nameidata nd;
199
200         if ((error = copyin(data, (caddr_t)&args, sizeof (struct ufs_args))) != 0)
201                 return (error);
202
203         cred = td->td_proc->p_ucred;
204         /*
205          * If updating, check whether changing from read-only to
206          * read/write; if there is no device name, that's all we do.
207          */
208         if (mp->mnt_flag & MNT_UPDATE) {
209                 ump = VFSTOUFS(mp);
210                 fs = ump->um_e2fs;
211                 error = 0;
212                 if (fs->s_rd_only == 0 && (mp->mnt_flag & MNT_RDONLY)) {
213                         flags = WRITECLOSE;
214                         if (mp->mnt_flag & MNT_FORCE)
215                                 flags |= FORCECLOSE;
216                         if (vfs_busy(mp, LK_NOWAIT, NULL, td))
217                                 return (EBUSY);
218                         error = ext2_flushfiles(mp, flags, td);
219                         vfs_unbusy(mp, td);
220                         if (!error && fs->s_wasvalid) {
221                                 fs->s_es->s_state |= EXT2_VALID_FS;
222                                 ext2_sbupdate(ump, MNT_WAIT);
223                         }
224                         fs->s_rd_only = 1;
225                 }
226                 if (!error && (mp->mnt_flag & MNT_RELOAD))
227                         error = ext2_reload(mp, proc0.p_ucred, td);
228                 if (error)
229                         return (error);
230                 devvp = ump->um_devvp;
231                 if (ext2_check_sb_compat(fs->s_es, devvp->v_rdev,
232                     (mp->mnt_kern_flag & MNTK_WANTRDWR) == 0) != 0)
233                         return (EPERM);
234                 if (fs->s_rd_only && (mp->mnt_kern_flag & MNTK_WANTRDWR)) {
235                         /*
236                          * If upgrade to read-write by non-root, then verify
237                          * that user has necessary permissions on the device.
238                          */
239                         if (cred->cr_uid != 0) {
240                                 vn_lock(devvp, LK_EXCLUSIVE | LK_RETRY, td);
241                                 if ((error = VOP_ACCESS(devvp, VREAD | VWRITE,
242                                     cred, td)) != 0) {
243                                         VOP_UNLOCK(devvp, 0, td);
244                                         return (error);
245                                 }
246                                 VOP_UNLOCK(devvp, 0, td);
247                         }
248
249                         if ((fs->s_es->s_state & EXT2_VALID_FS) == 0 ||
250                             (fs->s_es->s_state & EXT2_ERROR_FS)) {
251                                 if (mp->mnt_flag & MNT_FORCE) {
252                                         printf(
253 "WARNING: %s was not properly dismounted\n",
254                                             fs->fs_fsmnt);
255                                 } else {
256                                         printf(
257 "WARNING: R/W mount of %s denied.  Filesystem is not clean - run fsck\n",
258                                             fs->fs_fsmnt);
259                                         return (EPERM);
260                                 }
261                         }
262                         fs->s_es->s_state &= ~EXT2_VALID_FS;
263                         ext2_sbupdate(ump, MNT_WAIT);
264                         fs->s_rd_only = 0;
265                 }
266                 if (args.fspec == 0) {
267                         /*
268                          * Process export requests.
269                          */
270                         return (vfs_export(mp, &ump->um_export, &args.export));
271                 }
272         }
273         /*
274          * Not an update, or updating the name: look up the name
275          * and verify that it refers to a sensible block device.
276          */
277         NDINIT(&nd, NAMEI_LOOKUP, CNP_FOLLOW, UIO_USERSPACE, args.fspec, td);
278         if ((error = namei(&nd)) != 0)
279                 return (error);
280         NDFREE(&nd, NDF_ONLY_PNBUF);
281         devvp = nd.ni_vp;
282
283         if (!vn_isdisk(devvp, &error)) {
284                 vrele(devvp);
285                 return (error);
286         }
287
288         /*
289          * If mount by non-root, then verify that user has necessary
290          * permissions on the device.
291          */
292         if (cred->cr_uid != 0) {
293                 accessmode = VREAD;
294                 if ((mp->mnt_flag & MNT_RDONLY) == 0)
295                         accessmode |= VWRITE;
296                 vn_lock(devvp, LK_EXCLUSIVE | LK_RETRY, td);
297                 if ((error = VOP_ACCESS(devvp, accessmode, cred, td)) != 0) {
298                         vput(devvp);
299                         return (error);
300                 }
301                 VOP_UNLOCK(devvp, 0, td);
302         }
303
304         if ((mp->mnt_flag & MNT_UPDATE) == 0) {
305                 error = ext2_mountfs(devvp, mp, td);
306         } else {
307                 if (devvp != ump->um_devvp)
308                         error = EINVAL; /* needs translation */
309                 else
310                         vrele(devvp);
311         }
312         if (error) {
313                 vrele(devvp);
314                 return (error);
315         }
316         ump = VFSTOUFS(mp);
317         fs = ump->um_e2fs;
318         (void) copyinstr(path, fs->fs_fsmnt, sizeof(fs->fs_fsmnt) - 1, &size);
319         bzero(fs->fs_fsmnt + size, sizeof(fs->fs_fsmnt) - size);
320         bcopy((caddr_t)fs->fs_fsmnt, (caddr_t)mp->mnt_stat.f_mntonname,
321             MNAMELEN);
322         (void) copyinstr(args.fspec, mp->mnt_stat.f_mntfromname, MNAMELEN - 1, 
323             &size);
324         bzero(mp->mnt_stat.f_mntfromname + size, MNAMELEN - size);
325         (void)ext2_statfs(mp, &mp->mnt_stat, td);
326         return (0);
327 }
328
329 /*
330  * checks that the data in the descriptor blocks make sense
331  * this is taken from ext2/super.c
332  */
333 static int ext2_check_descriptors(struct ext2_sb_info *sb)
334 {
335         int i;
336         int desc_block = 0;
337         unsigned long block = sb->s_es->s_first_data_block;
338         struct ext2_group_desc * gdp = NULL;
339
340         /* ext2_debug ("Checking group descriptors"); */
341
342         for (i = 0; i < sb->s_groups_count; i++)
343         {
344                 /* examine next descriptor block */
345                 if ((i % EXT2_DESC_PER_BLOCK(sb)) == 0)
346                         gdp = (struct ext2_group_desc *) 
347                                 sb->s_group_desc[desc_block++]->b_data;
348                 if (gdp->bg_block_bitmap < block ||
349                     gdp->bg_block_bitmap >= block + EXT2_BLOCKS_PER_GROUP(sb))
350                 {
351                         printf ("ext2_check_descriptors: "
352                                     "Block bitmap for group %d"
353                                     " not in group (block %lu)!\n",
354                                     i, (unsigned long) gdp->bg_block_bitmap);
355                         return 0;
356                 }
357                 if (gdp->bg_inode_bitmap < block ||
358                     gdp->bg_inode_bitmap >= block + EXT2_BLOCKS_PER_GROUP(sb))
359                 {
360                         printf ("ext2_check_descriptors: "
361                                     "Inode bitmap for group %d"
362                                     " not in group (block %lu)!\n",
363                                     i, (unsigned long) gdp->bg_inode_bitmap);
364                         return 0;
365                 }
366                 if (gdp->bg_inode_table < block ||
367                     gdp->bg_inode_table + sb->s_itb_per_group >=
368                     block + EXT2_BLOCKS_PER_GROUP(sb))
369                 {
370                         printf ("ext2_check_descriptors: "
371                                     "Inode table for group %d"
372                                     " not in group (block %lu)!\n",
373                                     i, (unsigned long) gdp->bg_inode_table);
374                         return 0;
375                 }
376                 block += EXT2_BLOCKS_PER_GROUP(sb);
377                 gdp++;
378         }
379         return 1;
380 }
381
382 static int
383 ext2_check_sb_compat(struct ext2_super_block *es, dev_t dev, int ronly)
384 {
385         if (es->s_magic != EXT2_SUPER_MAGIC) {
386                 printf("ext2fs: %s: wrong magic number %#x (expected %#x)\n",
387                     devtoname(dev), es->s_magic, EXT2_SUPER_MAGIC);
388                 return (1);
389         }
390         if (es->s_rev_level > EXT2_GOOD_OLD_REV) {
391                 if (es->s_feature_incompat & ~EXT2_FEATURE_INCOMPAT_SUPP) {
392                         printf(
393 "WARNING: mount of %s denied due to unsupported optional features\n",
394                             devtoname(dev));
395                         return (1);
396                 }
397                 if (!ronly &&
398                     (es->s_feature_ro_compat & ~EXT2_FEATURE_RO_COMPAT_SUPP)) {
399                         printf(
400 "WARNING: R/W mount of %s denied due to unsupported optional features\n",
401                             devtoname(dev));
402                         return (1);
403                 }
404         }
405         return (0);
406 }
407
408 /*
409  * this computes the fields of the  ext2_sb_info structure from the
410  * data in the ext2_super_block structure read in
411  */
412 static int
413 compute_sb_data(struct vnode *devvp, struct ext2_super_block *es,
414                 struct ext2_sb_info *fs)
415 {
416     int db_count, error;
417     int i, j;
418     int logic_sb_block = 1;     /* XXX for now */
419
420 #if 1
421 #define V(v)  
422 #else
423 #define V(v)  printf(#v"= %d\n", fs->v);
424 #endif
425
426     fs->s_blocksize = EXT2_MIN_BLOCK_SIZE << es->s_log_block_size; 
427     V(s_blocksize)
428     fs->s_bshift = EXT2_MIN_BLOCK_LOG_SIZE + es->s_log_block_size;
429     V(s_bshift)
430     fs->s_fsbtodb = es->s_log_block_size + 1;
431     V(s_fsbtodb)
432     fs->s_qbmask = fs->s_blocksize - 1;
433     V(s_bmask)
434     fs->s_blocksize_bits = EXT2_BLOCK_SIZE_BITS(es);
435     V(s_blocksize_bits)
436     fs->s_frag_size = EXT2_MIN_FRAG_SIZE << es->s_log_frag_size;
437     V(s_frag_size)
438     if (fs->s_frag_size)
439         fs->s_frags_per_block = fs->s_blocksize / fs->s_frag_size;
440     V(s_frags_per_block)
441     fs->s_blocks_per_group = es->s_blocks_per_group;
442     V(s_blocks_per_group)
443     fs->s_frags_per_group = es->s_frags_per_group;
444     V(s_frags_per_group)
445     fs->s_inodes_per_group = es->s_inodes_per_group;
446     V(s_inodes_per_group)
447     fs->s_inodes_per_block = fs->s_blocksize / EXT2_INODE_SIZE;
448     V(s_inodes_per_block)
449     fs->s_itb_per_group = fs->s_inodes_per_group /fs->s_inodes_per_block;
450     V(s_itb_per_group)
451     fs->s_desc_per_block = fs->s_blocksize / sizeof (struct ext2_group_desc);
452     V(s_desc_per_block)
453     /* s_resuid / s_resgid ? */
454     fs->s_groups_count = (es->s_blocks_count -
455                           es->s_first_data_block +
456                           EXT2_BLOCKS_PER_GROUP(fs) - 1) /
457                          EXT2_BLOCKS_PER_GROUP(fs);
458     V(s_groups_count)
459     db_count = (fs->s_groups_count + EXT2_DESC_PER_BLOCK(fs) - 1) /
460         EXT2_DESC_PER_BLOCK(fs);
461     fs->s_db_per_group = db_count;
462     V(s_db_per_group)
463
464     fs->s_group_desc = bsd_malloc(db_count * sizeof (struct buf *),
465                 M_UFSMNT, M_WAITOK);
466
467     /* adjust logic_sb_block */
468     if(fs->s_blocksize > SBSIZE) 
469         /* Godmar thinks: if the blocksize is greater than 1024, then
470            the superblock is logically part of block zero. 
471          */
472         logic_sb_block = 0;
473     
474     for (i = 0; i < db_count; i++) {
475         error = bread(devvp , fsbtodb(fs, logic_sb_block + i + 1), 
476                 fs->s_blocksize, &fs->s_group_desc[i]);
477         if(error) {
478             for (j = 0; j < i; j++)
479                 brelse(fs->s_group_desc[j]);
480             bsd_free(fs->s_group_desc, M_UFSMNT);
481             printf("EXT2-fs: unable to read group descriptors (%d)\n", error);
482             return EIO;
483         }
484         /* Set the B_LOCKED flag on the buffer, then brelse() it */
485         LCK_BUF(fs->s_group_desc[i])
486     }
487     if(!ext2_check_descriptors(fs)) {
488             for (j = 0; j < db_count; j++)
489                     ULCK_BUF(fs->s_group_desc[j])
490             bsd_free(fs->s_group_desc, M_UFSMNT);
491             printf("EXT2-fs: (ext2_check_descriptors failure) "
492                    "unable to read group descriptors\n");
493             return EIO;
494     }
495
496     for (i = 0; i < EXT2_MAX_GROUP_LOADED; i++) {
497             fs->s_inode_bitmap_number[i] = 0;
498             fs->s_inode_bitmap[i] = NULL;
499             fs->s_block_bitmap_number[i] = 0;
500             fs->s_block_bitmap[i] = NULL;
501     }
502     fs->s_loaded_inode_bitmaps = 0;
503     fs->s_loaded_block_bitmaps = 0;
504     return 0;
505 }
506
507 /*
508  * Reload all incore data for a filesystem (used after running fsck on
509  * the root filesystem and finding things to fix). The filesystem must
510  * be mounted read-only.
511  *
512  * Things to do to update the mount:
513  *      1) invalidate all cached meta-data.
514  *      2) re-read superblock from disk.
515  *      3) re-read summary information from disk.
516  *      4) invalidate all inactive vnodes.
517  *      5) invalidate all cached file data.
518  *      6) re-read inode data for all active vnodes.
519  */
520 static int ext2_reload_scan1(struct mount *mp, struct vnode *vp, void *rescan);
521 static int ext2_reload_scan2(struct mount *mp, struct vnode *vp, void *rescan);
522
523 struct scaninfo {
524         int rescan;
525         int allerror;
526         int waitfor;
527         thread_t td;
528         struct vnode *devvp;
529         struct ext2_sb_info *fs;
530 };
531
532 static int
533 ext2_reload(struct mount *mountp, struct ucred *cred, struct thread *td)
534 {
535         struct vnode *devvp;
536         struct buf *bp;
537         struct ext2_super_block * es;
538         struct ext2_sb_info *fs;
539         int error;
540         struct scaninfo scaninfo;
541
542         if ((mountp->mnt_flag & MNT_RDONLY) == 0)
543                 return (EINVAL);
544         /*
545          * Step 1: invalidate all cached meta-data.
546          */
547         devvp = VFSTOUFS(mountp)->um_devvp;
548         if (vinvalbuf(devvp, 0, td, 0, 0))
549                 panic("ext2_reload: dirty1");
550         /*
551          * Step 2: re-read superblock from disk.
552          * constants have been adjusted for ext2
553          */
554         if ((error = bread(devvp, SBLOCK, SBSIZE, &bp)) != 0)
555                 return (error);
556         es = (struct ext2_super_block *)bp->b_data;
557         if (ext2_check_sb_compat(es, devvp->v_rdev, 0) != 0) {
558                 brelse(bp);
559                 return (EIO);           /* XXX needs translation */
560         }
561         fs = VFSTOUFS(mountp)->um_e2fs;
562         bcopy(bp->b_data, fs->s_es, sizeof(struct ext2_super_block));
563
564         if((error = compute_sb_data(devvp, es, fs)) != 0) {
565                 brelse(bp);
566                 return error;
567         }
568 #ifdef UNKLAR
569         if (fs->fs_sbsize < SBSIZE)
570                 bp->b_flags |= B_INVAL;
571 #endif
572         brelse(bp);
573
574         scaninfo.rescan = 1;
575         scaninfo.td = td;
576         scaninfo.devvp = devvp;
577         scaninfo.fs = fs;
578         while (error == 0 && scaninfo.rescan) {
579             scaninfo.rescan = 0;
580             error = vmntvnodescan(mountp, VMSC_GETVX, ext2_reload_scan1, 
581                                 ext2_reload_scan2, &scaninfo);
582         }
583         return(error);
584 }
585
586 static int
587 ext2_reload_scan1(struct mount *mp, struct vnode *vp, void *data)
588 {
589         /*struct scaninfo *info = data;*/
590
591         return(0);
592 }
593
594 static int
595 ext2_reload_scan2(struct mount *mp, struct vnode *vp, void *data)
596 {
597         struct scaninfo *info = data;
598         struct inode *ip;
599         struct buf *bp;
600         int error;
601
602         /*
603          * Try to recycle
604          */
605         if (vrecycle(vp, curthread))
606                 return(0);
607
608         /*
609          * Step 5: invalidate all cached file data.
610          */
611         if (vinvalbuf(vp, 0, info->td, 0, 0))
612                 panic("ext2_reload: dirty2");
613         /*
614          * Step 6: re-read inode data for all active vnodes.
615          */
616         ip = VTOI(vp);
617         error = bread(info->devvp, fsbtodb(info->fs, ino_to_fsba(info->fs, ip->i_number)),
618                     (int)info->fs->s_blocksize, &bp);
619         if (error)
620                 return (error);
621         ext2_ei2di((struct ext2_inode *) ((char *)bp->b_data + 
622             EXT2_INODE_SIZE * ino_to_fsbo(info->fs, ip->i_number)), 
623             &ip->i_din);
624         brelse(bp);
625         return(0);
626 }
627
628 /*
629  * Common code for mount and mountroot
630  */
631 static int
632 ext2_mountfs(struct vnode *devvp, struct mount *mp, struct thread *td)
633 {
634         struct ufsmount *ump;
635         struct buf *bp;
636         struct ext2_sb_info *fs;
637         struct ext2_super_block * es;
638         dev_t dev;
639         struct partinfo dpart;
640         int havepart = 0;
641         int error, i, size;
642         int ronly;
643
644         /*
645          * Disallow multiple mounts of the same device.
646          * Disallow mounting of a device that is currently in use
647          * (except for root, which might share swap device for miniroot).
648          * Flush out any old buffers remaining from a previous use.
649          */
650         if ((error = vfs_mountedon(devvp)) != 0)
651                 return (error);
652         if (count_udev(devvp->v_udev) > 0)
653                 return (EBUSY);
654         if ((error = vinvalbuf(devvp, V_SAVE, td, 0, 0)) != 0)
655                 return (error);
656 #ifdef READONLY
657 /* turn on this to force it to be read-only */
658         mp->mnt_flag |= MNT_RDONLY;
659 #endif
660
661         ronly = (mp->mnt_flag & MNT_RDONLY) != 0;
662         vn_lock(devvp, LK_EXCLUSIVE | LK_RETRY, td);
663         error = VOP_OPEN(devvp, ronly ? FREAD : FREAD|FWRITE, FSCRED, td);
664         VOP_UNLOCK(devvp, 0, td);
665         if (error)
666                 return (error);
667         dev = devvp->v_rdev;
668         if (dev->si_iosize_max != 0)
669                 mp->mnt_iosize_max = dev->si_iosize_max;
670         if (mp->mnt_iosize_max > MAXPHYS)
671                 mp->mnt_iosize_max = MAXPHYS;
672         if (VOP_IOCTL(devvp, DIOCGPART, (caddr_t)&dpart, FREAD, NOCRED, td) != 0)
673                 size = DEV_BSIZE;
674         else {
675                 havepart = 1;
676                 size = dpart.disklab->d_secsize;
677         }
678
679         bp = NULL;
680         ump = NULL;
681         if ((error = bread(devvp, SBLOCK, SBSIZE, &bp)) != 0)
682                 goto out;
683         es = (struct ext2_super_block *)bp->b_data;
684         if (ext2_check_sb_compat(es, dev, ronly) != 0) {
685                 error = EINVAL;         /* XXX needs translation */
686                 goto out;
687         }
688         if ((es->s_state & EXT2_VALID_FS) == 0 ||
689             (es->s_state & EXT2_ERROR_FS)) {
690                 if (ronly || (mp->mnt_flag & MNT_FORCE)) {
691                         printf(
692 "WARNING: Filesystem was not properly dismounted\n");
693                 } else {
694                         printf(
695 "WARNING: R/W mount denied.  Filesystem is not clean - run fsck\n");
696                         error = EPERM;
697                         goto out;
698                 }
699         }
700         ump = bsd_malloc(sizeof *ump, M_UFSMNT, M_WAITOK);
701         bzero((caddr_t)ump, sizeof *ump);
702         ump->um_malloctype = M_EXT2NODE;
703         ump->um_blkatoff = ext2_blkatoff;
704         ump->um_truncate = ext2_truncate;
705         ump->um_update = ext2_update;
706         ump->um_valloc = ext2_valloc;
707         ump->um_vfree = ext2_vfree;
708         /* I don't know whether this is the right strategy. Note that
709            we dynamically allocate both a ext2_sb_info and a ext2_super_block
710            while Linux keeps the super block in a locked buffer
711          */
712         ump->um_e2fs = bsd_malloc(sizeof(struct ext2_sb_info), 
713                 M_UFSMNT, M_WAITOK);
714         ump->um_e2fs->s_es = bsd_malloc(sizeof(struct ext2_super_block), 
715                 M_UFSMNT, M_WAITOK);
716         bcopy(es, ump->um_e2fs->s_es, (u_int)sizeof(struct ext2_super_block));
717         if ((error = compute_sb_data(devvp, ump->um_e2fs->s_es, ump->um_e2fs)))
718                 goto out;
719         /*
720          * We don't free the group descriptors allocated by compute_sb_data()
721          * until ext2_unmount().  This is OK since the mount will succeed.
722          */
723         brelse(bp);
724         bp = NULL;
725         fs = ump->um_e2fs;
726         fs->s_rd_only = ronly;  /* ronly is set according to mnt_flags */
727         /* if the fs is not mounted read-only, make sure the super block is 
728            always written back on a sync()
729          */
730         fs->s_wasvalid = fs->s_es->s_state & EXT2_VALID_FS ? 1 : 0;
731         if (ronly == 0) {
732                 fs->s_dirt = 1;         /* mark it modified */
733                 fs->s_es->s_state &= ~EXT2_VALID_FS;    /* set fs invalid */
734         }
735         mp->mnt_data = (qaddr_t)ump;
736         mp->mnt_stat.f_fsid.val[0] = dev2udev(dev);
737         mp->mnt_stat.f_fsid.val[1] = mp->mnt_vfc->vfc_typenum;
738         mp->mnt_maxsymlinklen = EXT2_MAXSYMLINKLEN;
739         mp->mnt_flag |= MNT_LOCAL;
740         ump->um_mountp = mp;
741         ump->um_dev = dev;
742         ump->um_devvp = devvp;
743         /* setting those two parameters allows us to use 
744            ufs_bmap w/o changse !
745         */
746         ump->um_nindir = EXT2_ADDR_PER_BLOCK(fs);
747         ump->um_bptrtodb = fs->s_es->s_log_block_size + 1;
748         ump->um_seqinc = EXT2_FRAGS_PER_BLOCK(fs);
749         for (i = 0; i < MAXQUOTAS; i++)
750                 ump->um_quotas[i] = NULLVP; 
751         dev->si_mountpoint = mp;
752
753         vfs_add_vnodeops(&mp->mnt_vn_ops, ext2_vnodeop_entries);
754         vfs_add_vnodeops(&mp->mnt_vn_spec_ops, ext2_specop_entries);
755         vfs_add_vnodeops(&mp->mnt_vn_fifo_ops, ext2_fifoop_entries);
756
757         if (ronly == 0) 
758                 ext2_sbupdate(ump, MNT_WAIT);
759         return (0);
760 out:
761         if (bp)
762                 brelse(bp);
763         (void)VOP_CLOSE(devvp, ronly ? FREAD : FREAD|FWRITE, td);
764         if (ump) {
765                 bsd_free(ump->um_e2fs->s_es, M_UFSMNT);
766                 bsd_free(ump->um_e2fs, M_UFSMNT);
767                 bsd_free(ump, M_UFSMNT);
768                 mp->mnt_data = (qaddr_t)0;
769         }
770         return (error);
771 }
772
773 /*
774  * unmount system call
775  */
776 static int
777 ext2_unmount(struct mount *mp, int mntflags, struct thread *td)
778 {
779         struct ufsmount *ump;
780         struct ext2_sb_info *fs;
781         int error, flags, ronly, i;
782
783         flags = 0;
784         if (mntflags & MNT_FORCE) {
785                 if (mp->mnt_flag & MNT_ROOTFS)
786                         return (EINVAL);
787                 flags |= FORCECLOSE;
788         }
789         if ((error = ext2_flushfiles(mp, flags, td)) != 0)
790                 return (error);
791         ump = VFSTOUFS(mp);
792         fs = ump->um_e2fs;
793         ronly = fs->s_rd_only;
794         if (ronly == 0) {
795                 if (fs->s_wasvalid)
796                         fs->s_es->s_state |= EXT2_VALID_FS;
797                 ext2_sbupdate(ump, MNT_WAIT);
798         }
799
800         /* release buffers containing group descriptors */
801         for(i = 0; i < fs->s_db_per_group; i++) 
802                 ULCK_BUF(fs->s_group_desc[i])
803         bsd_free(fs->s_group_desc, M_UFSMNT);
804
805         /* release cached inode/block bitmaps */
806         for (i = 0; i < EXT2_MAX_GROUP_LOADED; i++)
807                 if (fs->s_inode_bitmap[i])
808                         ULCK_BUF(fs->s_inode_bitmap[i])
809
810         for (i = 0; i < EXT2_MAX_GROUP_LOADED; i++)
811                 if (fs->s_block_bitmap[i])
812                         ULCK_BUF(fs->s_block_bitmap[i])
813
814         ump->um_devvp->v_rdev->si_mountpoint = NULL;
815         error = VOP_CLOSE(ump->um_devvp, ronly ? FREAD : FREAD|FWRITE, td);
816         vrele(ump->um_devvp);
817         bsd_free(fs->s_es, M_UFSMNT);
818         bsd_free(fs, M_UFSMNT);
819         bsd_free(ump, M_UFSMNT);
820         mp->mnt_data = (qaddr_t)0;
821         mp->mnt_flag &= ~MNT_LOCAL;
822         return (error);
823 }
824
825 /*
826  * Flush out all the files in a filesystem.
827  */
828 static int
829 ext2_flushfiles(struct mount *mp, int flags, struct thread *td)
830 {
831         struct ufsmount *ump;
832         int error;
833 #if QUOTA
834         int i;
835 #endif
836
837         ump = VFSTOUFS(mp);
838 #if QUOTA
839         if (mp->mnt_flag & MNT_QUOTA) {
840                 if ((error = vflush(mp, 0, SKIPSYSTEM|flags)) != 0)
841                         return (error);
842                 for (i = 0; i < MAXQUOTAS; i++) {
843                         if (ump->um_quotas[i] == NULLVP)
844                                 continue;
845                         quotaoff(td, mp, i);
846                 }
847                 /*
848                  * Here we fall through to vflush again to ensure
849                  * that we have gotten rid of all the system vnodes.
850                  */
851         }
852 #endif
853         error = vflush(mp, 0, flags);
854         return (error);
855 }
856
857 /*
858  * Get file system statistics.
859  * taken from ext2/super.c ext2_statfs
860  */
861 static int
862 ext2_statfs(struct mount *mp, struct statfs *sbp, struct thread *td)
863 {
864         unsigned long overhead;
865         struct ufsmount *ump;
866         struct ext2_sb_info *fs;
867         struct ext2_super_block *es;
868         int i, nsb;
869
870         ump = VFSTOUFS(mp);
871         fs = ump->um_e2fs;
872         es = fs->s_es;
873
874         if (es->s_magic != EXT2_SUPER_MAGIC)
875                 panic("ext2_statfs - magic number spoiled");
876
877         /*
878          * Compute the overhead (FS structures)
879          */
880         if (es->s_feature_ro_compat & EXT2_FEATURE_RO_COMPAT_SPARSE_SUPER) {
881                 nsb = 0;
882                 for (i = 0 ; i < fs->s_groups_count; i++)
883                         if (ext2_group_sparse(i))
884                                 nsb++;
885         } else
886                 nsb = fs->s_groups_count;
887         overhead = es->s_first_data_block + 
888             /* Superblocks and block group descriptors: */
889             nsb * (1 + fs->s_db_per_group) +
890             /* Inode bitmap, block bitmap, and inode table: */
891             fs->s_groups_count * (1 + 1 + fs->s_itb_per_group);
892
893         sbp->f_bsize = EXT2_FRAG_SIZE(fs);      
894         sbp->f_iosize = EXT2_BLOCK_SIZE(fs);
895         sbp->f_blocks = es->s_blocks_count - overhead;
896         sbp->f_bfree = es->s_free_blocks_count; 
897         sbp->f_bavail = sbp->f_bfree - es->s_r_blocks_count; 
898         sbp->f_files = es->s_inodes_count; 
899         sbp->f_ffree = es->s_free_inodes_count; 
900         if (sbp != &mp->mnt_stat) {
901                 sbp->f_type = mp->mnt_vfc->vfc_typenum;
902                 bcopy((caddr_t)mp->mnt_stat.f_mntonname,
903                         (caddr_t)&sbp->f_mntonname[0], MNAMELEN);
904                 bcopy((caddr_t)mp->mnt_stat.f_mntfromname,
905                         (caddr_t)&sbp->f_mntfromname[0], MNAMELEN);
906         }
907         return (0);
908 }
909
910 /*
911  * Go through the disk queues to initiate sandbagged IO;
912  * go through the inodes to write those that have been modified;
913  * initiate the writing of the super block if it has been modified.
914  *
915  * Note: we are always called with the filesystem marked `MPBUSY'.
916  */
917
918 static int ext2_sync_scan(struct mount *mp, struct vnode *vp, void *data);
919
920 static int
921 ext2_sync(struct mount *mp, int waitfor, struct thread *td)
922 {
923         struct ufsmount *ump = VFSTOUFS(mp);
924         struct ext2_sb_info *fs;
925         struct scaninfo scaninfo;
926         int error;
927
928         fs = ump->um_e2fs;
929         if (fs->s_dirt != 0 && fs->s_rd_only != 0) {            /* XXX */
930                 printf("fs = %s\n", fs->fs_fsmnt);
931                 panic("ext2_sync: rofs mod");
932         }
933
934         /*
935          * Write back each (modified) inode.
936          */
937         scaninfo.allerror = 0;
938         scaninfo.rescan = 1;
939         scaninfo.waitfor = waitfor;
940         scaninfo.td = td;
941         while (scaninfo.rescan) {
942                 scaninfo.rescan = 0;
943                 vmntvnodescan(mp, VMSC_GETVP|VMSC_NOWAIT, 
944                                 NULL, ext2_sync_scan, &scaninfo);
945         }
946
947         /*
948          * Force stale file system control information to be flushed.
949          */
950         if (waitfor != MNT_LAZY) {
951                 vn_lock(ump->um_devvp, LK_EXCLUSIVE | LK_RETRY, td);
952                 if ((error = VOP_FSYNC(ump->um_devvp, waitfor, td)) != 0)
953                         scaninfo.allerror = error;
954                 VOP_UNLOCK(ump->um_devvp, 0, td);
955         }
956 #if QUOTA
957         qsync(mp);
958 #endif
959         /*
960          * Write back modified superblock.
961          */
962         if (fs->s_dirt != 0) {
963                 fs->s_dirt = 0;
964                 fs->s_es->s_wtime = time_second;
965                 if ((error = ext2_sbupdate(ump, waitfor)) != 0)
966                         scaninfo.allerror = error;
967         }
968         return (scaninfo.allerror);
969 }
970
971 static int
972 ext2_sync_scan(struct mount *mp, struct vnode *vp, void *data)
973 {
974         struct scaninfo *info = data;
975         struct inode *ip;
976         int error;
977
978         ip = VTOI(vp);
979         if (vp->v_type == VNON ||
980             ((ip->i_flag &
981             (IN_ACCESS | IN_CHANGE | IN_MODIFIED | IN_UPDATE)) == 0 &&
982             (TAILQ_EMPTY(&vp->v_dirtyblkhd) || info->waitfor == MNT_LAZY))) {
983                 return(0);
984         }
985         if ((error = VOP_FSYNC(vp, info->waitfor, info->td)) != 0)
986                 info->allerror = error;
987         return(0);
988 }
989
990 /*
991  * Look up a EXT2FS dinode number to find its incore vnode, otherwise read it
992  * in from disk.  If it is in core, wait for the lock bit to clear, then
993  * return the inode locked.  Detection and handling of mount points must be
994  * done by the calling routine.
995  */
996 static int
997 ext2_vget(struct mount *mp, ino_t ino, struct vnode **vpp)
998 {
999         struct ext2_sb_info *fs;
1000         struct inode *ip;
1001         struct ufsmount *ump;
1002         struct buf *bp;
1003         struct vnode *vp;
1004         dev_t dev;
1005         int i, error;
1006         int used_blocks;
1007
1008         ump = VFSTOUFS(mp);
1009         dev = ump->um_dev;
1010 restart:
1011         if ((*vpp = ufs_ihashget(dev, ino)) != NULL)
1012                 return (0);
1013
1014         /*
1015          * Lock out the creation of new entries in the FFS hash table in
1016          * case getnewvnode() or MALLOC() blocks, otherwise a duplicate
1017          * may occur!
1018          */
1019         if (ext2fs_inode_hash_lock) {
1020                 while (ext2fs_inode_hash_lock) {
1021                         ext2fs_inode_hash_lock = -1;
1022                         tsleep(&ext2fs_inode_hash_lock, 0, "e2vget", 0);
1023                 }
1024                 goto restart;
1025         }
1026         ext2fs_inode_hash_lock = 1;
1027
1028         /*
1029          * If this MALLOC() is performed after the getnewvnode()
1030          * it might block, leaving a vnode with a NULL v_data to be
1031          * found by ext2_sync() if a sync happens to fire right then,
1032          * which will cause a panic because ext2_sync() blindly
1033          * dereferences vp->v_data (as well it should).
1034          */
1035         MALLOC(ip, struct inode *, sizeof(struct inode), M_EXT2NODE, M_WAITOK);
1036
1037         /* Allocate a new vnode/inode. */
1038         if ((error = getnewvnode(VT_UFS, mp, mp->mnt_vn_ops, &vp, 0, 0)) != 0) {
1039                 if (ext2fs_inode_hash_lock < 0)
1040                         wakeup(&ext2fs_inode_hash_lock);
1041                 ext2fs_inode_hash_lock = 0;
1042                 *vpp = NULL;
1043                 FREE(ip, M_EXT2NODE);
1044                 return (error);
1045         }
1046         bzero((caddr_t)ip, sizeof(struct inode));
1047         vp->v_data = ip;
1048         ip->i_vnode = vp;
1049         ip->i_e2fs = fs = ump->um_e2fs;
1050         ip->i_dev = dev;
1051         ip->i_number = ino;
1052 #if QUOTA
1053         for (i = 0; i < MAXQUOTAS; i++)
1054                 ip->i_dquot[i] = NODQUOT;
1055 #endif
1056         /*
1057          * Put it onto its hash chain.  Since our vnode is locked, other
1058          * requests for this inode will block if they arrive while we are
1059          * sleeping waiting for old data structures to be purged or for the
1060          * contents of the disk portion of this inode to be read.
1061          */
1062         ufs_ihashins(ip);
1063
1064         if (ext2fs_inode_hash_lock < 0)
1065                 wakeup(&ext2fs_inode_hash_lock);
1066         ext2fs_inode_hash_lock = 0;
1067
1068         /* Read in the disk contents for the inode, copy into the inode. */
1069 #if 0
1070 printf("ext2_vget(%d) dbn= %d ", ino, fsbtodb(fs, ino_to_fsba(fs, ino)));
1071 #endif
1072         if ((error = bread(ump->um_devvp, fsbtodb(fs, ino_to_fsba(fs, ino)),
1073             (int)fs->s_blocksize, &bp)) != 0) {
1074                 /*
1075                  * The inode does not contain anything useful, so it would
1076                  * be misleading to leave it on its hash chain. With mode
1077                  * still zero, it will be unlinked and returned to the free
1078                  * list by vput().
1079                  */
1080                 vx_put(vp);
1081                 brelse(bp);
1082                 *vpp = NULL;
1083                 return (error);
1084         }
1085         /* convert ext2 inode to dinode */
1086         ext2_ei2di((struct ext2_inode *) ((char *)bp->b_data + EXT2_INODE_SIZE *
1087                         ino_to_fsbo(fs, ino)), &ip->i_din);
1088         ip->i_block_group = ino_to_cg(fs, ino);
1089         ip->i_next_alloc_block = 0;
1090         ip->i_next_alloc_goal = 0;
1091         ip->i_prealloc_count = 0;
1092         ip->i_prealloc_block = 0;
1093         /* now we want to make sure that block pointers for unused
1094            blocks are zeroed out - ext2_balloc depends on this 
1095            although for regular files and directories only
1096         */
1097         if(S_ISDIR(ip->i_mode) || S_ISREG(ip->i_mode)) {
1098                 used_blocks = (ip->i_size+fs->s_blocksize-1) / fs->s_blocksize;
1099                 for(i = used_blocks; i < EXT2_NDIR_BLOCKS; i++)
1100                         ip->i_db[i] = 0;
1101         }
1102 /*
1103         ext2_print_inode(ip);
1104 */
1105         brelse(bp);
1106
1107         /*
1108          * Initialize the vnode from the inode, check for aliases.
1109          * Note that the underlying vnode may have changed.
1110          */
1111         if ((error = ufs_vinit(mp, &vp)) != 0) {
1112                 vx_put(vp);
1113                 *vpp = NULL;
1114                 return (error);
1115         }
1116         /*
1117          * Finish inode initialization now that aliasing has been resolved.
1118          */
1119         ip->i_devvp = ump->um_devvp;
1120         vref(ip->i_devvp);
1121         /*
1122          * Set up a generation number for this inode if it does not
1123          * already have one. This should only happen on old filesystems.
1124          */
1125         if (ip->i_gen == 0) {
1126                 ip->i_gen = random() / 2 + 1;
1127                 if ((vp->v_mount->mnt_flag & MNT_RDONLY) == 0)
1128                         ip->i_flag |= IN_MODIFIED;
1129         }
1130         /*
1131          * Return the locked and refd vnode.
1132          */
1133         *vpp = vp;
1134         return (0);
1135 }
1136
1137 /*
1138  * File handle to vnode
1139  *
1140  * Have to be really careful about stale file handles:
1141  * - check that the inode number is valid
1142  * - call ext2_vget() to get the locked inode
1143  * - check for an unallocated inode (i_mode == 0)
1144  * - check that the given client host has export rights and return
1145  *   those rights via. exflagsp and credanonp
1146  */
1147 static int
1148 ext2_fhtovp(struct mount *mp, struct fid *fhp, struct vnode **vpp)
1149 {
1150         struct ufid *ufhp;
1151         struct ext2_sb_info *fs;
1152
1153         ufhp = (struct ufid *)fhp;
1154         fs = VFSTOUFS(mp)->um_e2fs;
1155         if (ufhp->ufid_ino < ROOTINO ||
1156             ufhp->ufid_ino > fs->s_groups_count * fs->s_es->s_inodes_per_group)
1157                 return (ESTALE);
1158         return (ufs_fhtovp(mp, ufhp, vpp));
1159 }
1160
1161 /*
1162  * Vnode pointer to File handle
1163  */
1164 /* ARGSUSED */
1165 static int
1166 ext2_vptofh(struct vnode *vp, struct fid *fhp)
1167 {
1168         struct inode *ip;
1169         struct ufid *ufhp;
1170
1171         ip = VTOI(vp);
1172         ufhp = (struct ufid *)fhp;
1173         ufhp->ufid_len = sizeof(struct ufid);
1174         ufhp->ufid_ino = ip->i_number;
1175         ufhp->ufid_gen = ip->i_gen;
1176         return (0);
1177 }
1178
1179 /*
1180  * Write a superblock and associated information back to disk.
1181  */
1182 static int
1183 ext2_sbupdate(struct ufsmount *mp, int waitfor)
1184 {
1185         struct ext2_sb_info *fs = mp->um_e2fs;
1186         struct ext2_super_block *es = fs->s_es;
1187         struct buf *bp;
1188         int error = 0;
1189 /*
1190 printf("\nupdating superblock, waitfor=%s\n", waitfor == MNT_WAIT ? "yes":"no");
1191 */
1192         bp = getblk(mp->um_devvp, SBLOCK, SBSIZE, 0, 0);
1193         bcopy((caddr_t)es, bp->b_data, (u_int)sizeof(struct ext2_super_block));
1194         if (waitfor == MNT_WAIT)
1195                 error = bwrite(bp);
1196         else
1197                 bawrite(bp);
1198
1199         /*
1200          * The buffers for group descriptors, inode bitmaps and block bitmaps
1201          * are not busy at this point and are (hopefully) written by the
1202          * usual sync mechanism. No need to write them here
1203          */
1204
1205         return (error);
1206 }