]> git.droids-corp.org - dpdk.git/commitdiff
doc: warn about UIO not working with UEFI secure boot
authorJohn McNamara <john.mcnamara@intel.com>
Thu, 3 Aug 2017 17:19:45 +0000 (18:19 +0100)
committerThomas Monjalon <thomas@monjalon.net>
Thu, 3 Aug 2017 23:21:54 +0000 (01:21 +0200)
Added notes to the documentation warning that if UEFI secure boot
is enabled the Linux kernel may disallow the use of UIO on the
system, and a suggested workaround of using the vfio-pci kernel
module instead of igb_uio or uio_pci_generic.

Signed-off-by: John McNamara <john.mcnamara@intel.com>
doc/guides/faq/faq.rst
doc/guides/linux_gsg/linux_drivers.rst
doc/guides/linux_gsg/sys_reqs.rst

index 308a2873daad0bf0504af770909c457ba15e6584..aa1d47d3fe4999e63c742d9a8f31acb4aa1de44b 100644 (file)
@@ -222,3 +222,10 @@ How can hugepage-backed memory be shared among multiple processes?
 ------------------------------------------------------------------
 
 See the Primary and Secondary examples in the :ref:`multi-process sample application <multi_process_app>`.
+
+
+Why can't my application receive packets on my system with UEFI Secure Boot enabled?
+------------------------------------------------------------------------------------
+
+If UEFI secure boot is enabled, the Linux kernel may disallow the use of UIO on the system.
+Therefore, devices for use by DPDK should be bound to the ``vfio-pci`` kernel module rather than ``igb_uio`` or ``uio_pci_generic``.
index b3525c0b297554798e13c718a546bb5b99c1b1f2..08f7c9baaf5fad76a1fcf1f9a7a41448ed16d72e 100644 (file)
@@ -67,6 +67,13 @@ be loaded as shown below:
     For some devices which lack support for legacy interrupts, e.g. virtual function
     (VF) devices, the ``igb_uio`` module may be needed in place of ``uio_pci_generic``.
 
+.. note::
+
+   If UEFI secure boot is enabled, the Linux kernel may disallow the use of
+   UIO on the system. Therefore, devices for use by DPDK should be bound to the
+   ``vfio-pci`` kernel module rather than ``igb_uio`` or ``uio_pci_generic``.
+   For more details see :ref:`linux_gsg_binding_kernel` below.
+
 Since DPDK release 1.7 onward provides VFIO support, use of UIO is optional
 for platforms that support using VFIO.
 
index 0f98876d3f0caa0bcab0d713d244f19bf60c15cb..eb8442c622260e9889923302ffdc7bc5e83ba9ef 100644 (file)
@@ -47,6 +47,13 @@ and high performance of small packets, BIOS setting changes may be needed.
 Consult the section on :ref:`Enabling Additional Functionality <Enabling_Additional_Functionality>`
 for more information on the required changes.
 
+.. note::
+
+   If UEFI secure boot is enabled, the Linux kernel may disallow the use of
+   UIO on the system. Therefore, devices for use by DPDK should be bound to the
+   ``vfio-pci`` kernel module rather than ``igb_uio`` or ``uio_pci_generic``.
+   For more details see :ref:`linux_gsg_binding_kernel`.
+
 Compilation of the DPDK
 -----------------------