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

Collapse All | Expand All

(-)b/lib/libcuse/cuse.3 (+1 lines)
Lines 292-297 enum { Link Here
292
  CUSE_ERR_SIGNAL
292
  CUSE_ERR_SIGNAL
293
  CUSE_ERR_OTHER
293
  CUSE_ERR_OTHER
294
  CUSE_ERR_NOT_LOADED
294
  CUSE_ERR_NOT_LOADED
295
  CUSE_ERR_NO_DEVICE
295
296
296
  CUSE_POLL_NONE
297
  CUSE_POLL_NONE
297
  CUSE_POLL_READ
298
  CUSE_POLL_READ
(-)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 / +2 lines)
Lines 27-33 Link Here
27
#ifndef _CUSE_DEFS_H_
27
#ifndef _CUSE_DEFS_H_
28
#define	_CUSE_DEFS_H_
28
#define	_CUSE_DEFS_H_
29
29
30
#define	CUSE_VERSION		0x000122
30
#define	CUSE_VERSION		0x000123
31
31
32
#define	CUSE_ERR_NONE		0
32
#define	CUSE_ERR_NONE		0
33
#define	CUSE_ERR_BUSY		-1
33
#define	CUSE_ERR_BUSY		-1
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