1*eb60dd44Stsutsui /* $NetBSD: filesystem.c,v 1.4 2009/08/24 13:03:44 tsutsui Exp $ */ 2530cee7eSleo 3530cee7eSleo /* 4530cee7eSleo * Copyright (c) 1993 Philip A. Nelson. 5530cee7eSleo * All rights reserved. 6530cee7eSleo * 7530cee7eSleo * Redistribution and use in source and binary forms, with or without 8530cee7eSleo * modification, are permitted provided that the following conditions 9530cee7eSleo * are met: 10530cee7eSleo * 1. Redistributions of source code must retain the above copyright 11530cee7eSleo * notice, this list of conditions and the following disclaimer. 12530cee7eSleo * 2. Redistributions in binary form must reproduce the above copyright 13530cee7eSleo * notice, this list of conditions and the following disclaimer in the 14530cee7eSleo * documentation and/or other materials provided with the distribution. 15530cee7eSleo * 3. All advertising materials mentioning features or use of this software 16530cee7eSleo * must display the following acknowledgement: 17530cee7eSleo * This product includes software developed by Philip A. Nelson. 18530cee7eSleo * 4. The name of Philip A. Nelson may not be used to endorse or promote 19530cee7eSleo * products derived from this software without specific prior written 20530cee7eSleo * permission. 21530cee7eSleo * 22530cee7eSleo * THIS SOFTWARE IS PROVIDED BY PHILIP NELSON ``AS IS'' AND ANY EXPRESS OR 23530cee7eSleo * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES 24530cee7eSleo * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. 25530cee7eSleo * IN NO EVENT SHALL PHILIP NELSON BE LIABLE FOR ANY DIRECT, INDIRECT, 26530cee7eSleo * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT 27530cee7eSleo * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 28530cee7eSleo * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 29530cee7eSleo * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 30530cee7eSleo * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 31530cee7eSleo * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 32530cee7eSleo */ 33530cee7eSleo 349b06a3a7Sjunyoung #include <lib/libsa/stand.h> 359b06a3a7Sjunyoung #include <lib/libsa/ufs.h> 36530cee7eSleo 37530cee7eSleo struct fs_ops file_system[] = { 389b06a3a7Sjunyoung FS_OPS(ufs), 39530cee7eSleo }; 40530cee7eSleo 41*eb60dd44Stsutsui int nfsys = __arraycount(file_system); 42