cuse.c (010638ab22eb13d3219893db5a716e19ebbb9e85) | cuse.c (19f1b6fb7b49633dea04fcad3882d116ed0c79d6) |
---|---|
1/* $FreeBSD$ */ 2/*- 3 * Copyright (c) 2010-2013 Hans Petter Selasky. All rights reserved. 4 * 5 * Redistribution and use in source and binary forms, with or without 6 * modification, are permitted provided that the following conditions 7 * are met: 8 * 1. Redistributions of source code must retain the above copyright --- 49 unchanged lines hidden (view full) --- 58#include <vm/vm.h> 59#include <vm/pmap.h> 60 61#include <fs/cuse/cuse_defs.h> 62#include <fs/cuse/cuse_ioctl.h> 63 64MODULE_VERSION(cuse, 1); 65 | 1/* $FreeBSD$ */ 2/*- 3 * Copyright (c) 2010-2013 Hans Petter Selasky. All rights reserved. 4 * 5 * Redistribution and use in source and binary forms, with or without 6 * modification, are permitted provided that the following conditions 7 * are met: 8 * 1. Redistributions of source code must retain the above copyright --- 49 unchanged lines hidden (view full) --- 58#include <vm/vm.h> 59#include <vm/pmap.h> 60 61#include <fs/cuse/cuse_defs.h> 62#include <fs/cuse/cuse_ioctl.h> 63 64MODULE_VERSION(cuse, 1); 65 |
66/* 67 * Prevent cuse4bsd.ko and cuse.ko from loading at the same time by 68 * declaring support for the cuse4bsd interface in cuse.ko: 69 */ 70MODULE_VERSION(cuse4bsd, 1); 71 |
|
66#define NBUSY ((uint8_t *)1) 67 68#ifdef FEATURE 69FEATURE(cuse, "Userspace character devices"); 70#endif 71 72struct cuse_command; 73struct cuse_server; --- 1810 unchanged lines hidden --- | 72#define NBUSY ((uint8_t *)1) 73 74#ifdef FEATURE 75FEATURE(cuse, "Userspace character devices"); 76#endif 77 78struct cuse_command; 79struct cuse_server; --- 1810 unchanged lines hidden --- |