View | Details | Raw Unified | Return to bug 218626 | Differences between
and this patch

Collapse All | Expand All

(-)b/sys/fs/cuse/cuse.c (+2 lines)
Lines 390-395 cuse_convert_error(int error) Link Here
390
		return (EFAULT);
390
		return (EFAULT);
391
	case CUSE_ERR_SIGNAL:
391
	case CUSE_ERR_SIGNAL:
392
		return (EINTR);
392
		return (EINTR);
393
	case CUSE_ERR_NO_DEVICE:
394
		return (ENODEV);
393
	default:
395
	default:
394
		return (ENXIO);
396
		return (ENXIO);
395
	}
397
	}
(-)b/sys/fs/cuse/cuse_defs.h (+1 lines)
Lines 38-43 Link Here
38
#define	CUSE_ERR_SIGNAL		-6
38
#define	CUSE_ERR_SIGNAL		-6
39
#define	CUSE_ERR_OTHER		-7
39
#define	CUSE_ERR_OTHER		-7
40
#define	CUSE_ERR_NOT_LOADED	-8
40
#define	CUSE_ERR_NOT_LOADED	-8
41
#define	CUSE_ERR_NO_DEVICE	-9
41
42
42
#define	CUSE_POLL_NONE		0
43
#define	CUSE_POLL_NONE		0
43
#define	CUSE_POLL_READ		1
44
#define	CUSE_POLL_READ		1

Return to bug 218626