Merge branch 'turbostat' of git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux
[sfrench/cifs-2.6.git] / Documentation / media / uapi / v4l / vidioc-prepare-buf.rst
1 .. Permission is granted to copy, distribute and/or modify this
2 .. document under the terms of the GNU Free Documentation License,
3 .. Version 1.1 or any later version published by the Free Software
4 .. Foundation, with no Invariant Sections, no Front-Cover Texts
5 .. and no Back-Cover Texts. A copy of the license is included at
6 .. Documentation/media/uapi/fdl-appendix.rst.
7 ..
8 .. TODO: replace it to GFDL-1.1-or-later WITH no-invariant-sections
9
10 .. _VIDIOC_PREPARE_BUF:
11
12 ************************
13 ioctl VIDIOC_PREPARE_BUF
14 ************************
15
16 Name
17 ====
18
19 VIDIOC_PREPARE_BUF - Prepare a buffer for I/O
20
21
22 Synopsis
23 ========
24
25 .. c:function:: int ioctl( int fd, VIDIOC_PREPARE_BUF, struct v4l2_buffer *argp )
26     :name: VIDIOC_PREPARE_BUF
27
28
29 Arguments
30 =========
31
32 ``fd``
33     File descriptor returned by :ref:`open() <func-open>`.
34
35 ``argp``
36     Pointer to struct :c:type:`v4l2_buffer`.
37
38
39 Description
40 ===========
41
42 Applications can optionally call the :ref:`VIDIOC_PREPARE_BUF` ioctl to
43 pass ownership of the buffer to the driver before actually enqueuing it,
44 using the :ref:`VIDIOC_QBUF <VIDIOC_QBUF>` ioctl, and to prepare it for future I/O. Such
45 preparations may include cache invalidation or cleaning. Performing them
46 in advance saves time during the actual I/O.
47
48 The struct :c:type:`v4l2_buffer` structure is specified in
49 :ref:`buffer`.
50
51
52 Return Value
53 ============
54
55 On success 0 is returned, on error -1 and the ``errno`` variable is set
56 appropriately. The generic error codes are described at the
57 :ref:`Generic Error Codes <gen-errors>` chapter.
58
59 EBUSY
60     File I/O is in progress.
61
62 EINVAL
63     The buffer ``type`` is not supported, or the ``index`` is out of
64     bounds, or no buffers have been allocated yet, or the ``userptr`` or
65     ``length`` are invalid.