target/cris: Let cris_mmu_translate() use MMUAccessType access_type
[qemu/ar7.git] / include / block / fuse.h
blobffa91fe36443b79772febed979167ff0ef58ffac
1 /*
2 * Present a block device as a raw image through FUSE
4 * Copyright (c) 2020 Max Reitz <mreitz@redhat.com>
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; under version 2 or later of the License.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, see <http://www.gnu.org/licenses/>.
19 #ifndef BLOCK_FUSE_H
20 #define BLOCK_FUSE_H
22 #ifdef CONFIG_FUSE
24 #include "block/export.h"
26 extern const BlockExportDriver blk_exp_fuse;
28 #endif /* CONFIG_FUSE */
30 #endif