1*eb60dd44Stsutsui /* $NetBSD: filesystem.c,v 1.8 2009/08/24 13:03:43 tsutsui Exp $ */ 238a9a4d6Sleo 338a9a4d6Sleo /* 438a9a4d6Sleo * Copyright (c) 1993 Philip A. Nelson. 538a9a4d6Sleo * All rights reserved. 638a9a4d6Sleo * 738a9a4d6Sleo * Redistribution and use in source and binary forms, with or without 838a9a4d6Sleo * modification, are permitted provided that the following conditions 938a9a4d6Sleo * are met: 1038a9a4d6Sleo * 1. Redistributions of source code must retain the above copyright 1138a9a4d6Sleo * notice, this list of conditions and the following disclaimer. 1238a9a4d6Sleo * 2. Redistributions in binary form must reproduce the above copyright 1338a9a4d6Sleo * notice, this list of conditions and the following disclaimer in the 1438a9a4d6Sleo * documentation and/or other materials provided with the distribution. 1538a9a4d6Sleo * 3. All advertising materials mentioning features or use of this software 1638a9a4d6Sleo * must display the following acknowledgement: 1738a9a4d6Sleo * This product includes software developed by Philip A. Nelson. 1838a9a4d6Sleo * 4. The name of Philip A. Nelson may not be used to endorse or promote 1938a9a4d6Sleo * products derived from this software without specific prior written 2038a9a4d6Sleo * permission. 2138a9a4d6Sleo * 2238a9a4d6Sleo * THIS SOFTWARE IS PROVIDED BY PHILIP NELSON ``AS IS'' AND ANY EXPRESS OR 2338a9a4d6Sleo * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES 2438a9a4d6Sleo * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. 2538a9a4d6Sleo * IN NO EVENT SHALL PHILIP NELSON BE LIABLE FOR ANY DIRECT, INDIRECT, 2638a9a4d6Sleo * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT 2738a9a4d6Sleo * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 2838a9a4d6Sleo * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 2938a9a4d6Sleo * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 3038a9a4d6Sleo * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 3138a9a4d6Sleo * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 3238a9a4d6Sleo */ 3338a9a4d6Sleo 34e63501d2Sjunyoung #include <lib/libsa/stand.h> 3538a9a4d6Sleo #include <ufs.h> 3638a9a4d6Sleo 3738a9a4d6Sleo struct fs_ops file_system[] = { 3817670568Sjunyoung FS_OPS(ufs), 3938a9a4d6Sleo }; 4038a9a4d6Sleo 41*eb60dd44Stsutsui int nfsys = __arraycount(file_system); 42