1*20f6ddd0STomohiro Kusumi /*- 2*20f6ddd0STomohiro Kusumi * SPDX-License-Identifier: BSD-2-Clause 3*20f6ddd0STomohiro Kusumi * 4*20f6ddd0STomohiro Kusumi * Copyright 2018-2020 Alex Richardson <arichardson@FreeBSD.org> 5*20f6ddd0STomohiro Kusumi * 6*20f6ddd0STomohiro Kusumi * This work was supported by Innovate UK project 105694, "Digital Security by 7*20f6ddd0STomohiro Kusumi * Design (DSbD) Technology Platform Prototype". 8*20f6ddd0STomohiro Kusumi * 9*20f6ddd0STomohiro Kusumi * Redistribution and use in source and binary forms, with or without 10*20f6ddd0STomohiro Kusumi * modification, are permitted provided that the following conditions 11*20f6ddd0STomohiro Kusumi * are met: 12*20f6ddd0STomohiro Kusumi * 1. Redistributions of source code must retain the above copyright 13*20f6ddd0STomohiro Kusumi * notice, this list of conditions and the following disclaimer. 14*20f6ddd0STomohiro Kusumi * 2. Redistributions in binary form must reproduce the above copyright 15*20f6ddd0STomohiro Kusumi * notice, this list of conditions and the following disclaimer in the 16*20f6ddd0STomohiro Kusumi * documentation and/or other materials provided with the distribution. 17*20f6ddd0STomohiro Kusumi * 18*20f6ddd0STomohiro Kusumi * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND 19*20f6ddd0STomohiro Kusumi * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 20*20f6ddd0STomohiro Kusumi * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 21*20f6ddd0STomohiro Kusumi * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE 22*20f6ddd0STomohiro Kusumi * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 23*20f6ddd0STomohiro Kusumi * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 24*20f6ddd0STomohiro Kusumi * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 25*20f6ddd0STomohiro Kusumi * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 26*20f6ddd0STomohiro Kusumi * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 27*20f6ddd0STomohiro Kusumi * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 28*20f6ddd0STomohiro Kusumi * SUCH DAMAGE. 29*20f6ddd0STomohiro Kusumi */ 30*20f6ddd0STomohiro Kusumi #pragma once 31*20f6ddd0STomohiro Kusumi /* Ensure that struct denode uses the local m_buf structure and not sys/buf.h */ 32*20f6ddd0STomohiro Kusumi #define m_vnode vnode 33*20f6ddd0STomohiro Kusumi #define m_buf buf 34*20f6ddd0STomohiro Kusumi struct vn_clusterw { 35*20f6ddd0STomohiro Kusumi /* Not interesting for msdosfs makefs. */ 36*20f6ddd0STomohiro Kusumi }; 37*20f6ddd0STomohiro Kusumi #include "../ffs/buf.h" 38*20f6ddd0STomohiro Kusumi /* struct direntry needs to be defined to included denode.h */ 39*20f6ddd0STomohiro Kusumi #include "msdos/direntry.h" 40*20f6ddd0STomohiro Kusumi #include <vfs/msdosfs/denode.h> 41