gen-errors.rst 2.7 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14
.. -*- coding: utf-8; mode: rst -*-

.. _gen_errors:

*******************
Generic Error Codes
*******************


.. _gen-errors:

.. flat-table:: Generic error codes
    :header-rows:  0
    :stub-columns: 0
15
    :widths: 1 16
16 17 18 19


    -  .. row 1

20
       -  ``EAGAIN`` (aka ``EWOULDBLOCK``)
21 22

       -  The ioctl can't be handled because the device is in state where it
23 24 25 26
	  can't perform it. This could happen for example in case where
	  device is sleeping and ioctl is performed to query statistics. It
	  is also returned when the ioctl would need to wait for an event,
	  but the device was opened in non-blocking mode.
27 28 29

    -  .. row 2

30
       -  ``EBADF``
31 32 33 34 35

       -  The file descriptor is not a valid.

    -  .. row 3

36
       -  ``EBUSY``
37 38

       -  The ioctl can't be handled because the device is busy. This is
39 40 41 42 43
	  typically return while device is streaming, and an ioctl tried to
	  change something that would affect the stream, or would require
	  the usage of a hardware resource that was already allocated. The
	  ioctl must not be retried without performing another action to fix
	  the problem first (typically: stop the stream before retrying).
44 45 46

    -  .. row 4

47
       -  ``EFAULT``
48 49

       -  There was a failure while copying data from/to userspace, probably
50
	  caused by an invalid pointer reference.
51 52 53

    -  .. row 5

54
       -  ``EINVAL``
55 56

       -  One or more of the ioctl parameters are invalid or out of the
57 58
	  allowed range. This is a widely used error code. See the
	  individual ioctl requests for specific causes.
59 60 61

    -  .. row 6

62
       -  ``ENODEV``
63 64 65 66 67

       -  Device not found or was removed.

    -  .. row 7

68
       -  ``ENOMEM``
69 70 71 72 73

       -  There's not enough memory to handle the desired operation.

    -  .. row 8

74
       -  ``ENOTTY``
75 76

       -  The ioctl is not supported by the driver, actually meaning that
77 78
	  the required functionality is not available, or the file
	  descriptor is not for a media device.
79 80 81

    -  .. row 9

82
       -  ``ENOSPC``
83 84

       -  On USB devices, the stream ioctl's can return this error, meaning
85 86
	  that this request would overcommit the usb bandwidth reserved for
	  periodic transfers (up to 80% of the USB bandwidth).
87 88 89

    -  .. row 10

90
       -  ``EPERM``
91 92

       -  Permission denied. Can be returned if the device needs write
93
	  permission, or some special capabilities is needed (e. g. root)
94

95
.. note::
96

97 98 99 100
  #. This list is not exaustive; ioctls may return other error codes.
     Since errors may have side effects such as a driver reset,
     applications should abort on unexpected errors, or otherwise
     assume that the device is in a bad state.
101

102 103
  #. Request-specific error codes are listed in the individual
     requests descriptions.