1 /* $OpenBSD: filesystem.c,v 1.6 2020/03/11 09:59:31 otto Exp $ */ 2 /* $NetBSD: filesystem.c,v 1.3 1997/04/06 08:40:35 cgd Exp $ */ 3 4 /* 5 * Copyright (c) 1993 Philip A. Nelson. 6 * All rights reserved. 7 * 8 * Redistribution and use in source and binary forms, with or without 9 * modification, are permitted provided that the following conditions 10 * are met: 11 * 1. Redistributions of source code must retain the above copyright 12 * notice, this list of conditions and the following disclaimer. 13 * 2. Redistributions in binary form must reproduce the above copyright 14 * notice, this list of conditions and the following disclaimer in the 15 * documentation and/or other materials provided with the distribution. 16 * 3. All advertising materials mentioning features or use of this software 17 * must display the following acknowledgement: 18 * This product includes software developed by Philip A. Nelson. 19 * 4. The name of Philip A. Nelson may not be used to endorse or promote 20 * products derived from this software without specific prior written 21 * permission. 22 * 23 * THIS SOFTWARE IS PROVIDED BY PHILIP NELSON ``AS IS'' AND ANY EXPRESS OR 24 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES 25 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. 26 * IN NO EVENT SHALL PHILIP NELSON BE LIABLE FOR ANY DIRECT, INDIRECT, 27 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT 28 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 29 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 30 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 31 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 32 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 33 * 34 * filesystem.c 35 */ 36 37 #include <lib/libsa/stand.h> 38 #include <lib/libsa/ufs.h> 39 #include <lib/libsa/ufs2.h> 40 #include <lib/libsa/cd9660.h> 41 42 struct fs_ops file_system[] = { 43 { ufs_open, ufs_close, ufs_read, ufs_write, 44 ufs_seek, ufs_stat, ufs_readdir, ufs_fchmod }, 45 { ufs2_open, ufs2_close, ufs2_read, ufs2_write, 46 ufs2_seek, ufs2_stat, ufs2_readdir, ufs2_fchmod }, 47 { cd9660_open, cd9660_close, cd9660_read, cd9660_write, 48 cd9660_seek, cd9660_stat }, 49 }; 50 51 int nfsys = sizeof(file_system)/sizeof(struct fs_ops); 52