]> git.droids-corp.org - dpdk.git/commitdiff
eal: hide internal device event structure
authorDavid Marchand <david.marchand@redhat.com>
Thu, 17 Sep 2020 11:28:22 +0000 (13:28 +0200)
committerDavid Marchand <david.marchand@redhat.com>
Mon, 21 Sep 2020 08:12:10 +0000 (10:12 +0200)
This structure is not used in the public API.

Fixes: a753e53d517b ("eal: add device event monitor framework")
Signed-off-by: David Marchand <david.marchand@redhat.com>
Acked-by: Jeff Guo <jia.guo@intel.com>
Acked-by: Ray Kinsella <mdr@ashroe.eu>
doc/guides/rel_notes/deprecation.rst
doc/guides/rel_notes/release_20_11.rst
lib/librte_eal/include/rte_dev.h
lib/librte_eal/linux/eal_dev.c

index fc07e5f285da2a12811f40231c5fbbaae642b5d8..f9b72acb8470a7adc2188851effa42c5a7932986 100644 (file)
@@ -70,9 +70,6 @@ Deprecation Notices
 * eal: The function ``rte_eal_remote_launch`` will return new error codes
   after read or write error on the pipe, instead of calling ``rte_panic``.
 
-* eal: The ``rte_dev_event`` structure will be made private to the EAL as no
-  public API makes use of it.
-
 * rte_atomicNN_xxx: These APIs do not take memory order parameter. This does
   not allow for writing optimized code for all the CPU architectures supported
   in DPDK. DPDK will adopt C11 atomic operations semantics and provide wrappers
index 401e7295878ac3ee3cd33fe5c8f8b57533bddc49..73ac08fb0e9efe13766cd854a171f59811fd0df5 100644 (file)
@@ -87,6 +87,9 @@ API Changes
 * eal: The ``rte_logs`` struct and global symbol was made private
   and is no longer part of the API.
 
+* eal: Made the ``rte_dev_event`` structure private to the EAL as no public API
+  used it.
+
 * mem: Removed the unioned field ``phys_addr`` from
   the structures ``rte_memseg`` and ``rte_memzone``.
   The field ``iova`` is remaining from the old unions.
index 53c8bc6fab9e152bf016d3a8577a38f6d3d28fc2..81905b3ae35f0ec079d420aa09cfb0f18d313a0c 100644 (file)
@@ -33,12 +33,6 @@ enum rte_dev_event_type {
        RTE_DEV_EVENT_MAX       /**< max value of this enum */
 };
 
-struct rte_dev_event {
-       enum rte_dev_event_type type;   /**< device event type */
-       int subsystem;                  /**< subsystem id */
-       char *devname;                  /**< device name */
-};
-
 typedef void (*rte_dev_event_cb_fn)(const char *device_name,
                                        enum rte_dev_event_type event,
                                        void *cb_arg);
index 83b6068264cb158b8c53a1213824cf7ac23c8862..2e15762b56944f89b773d219839505e6d027fdfd 100644 (file)
@@ -133,6 +133,12 @@ err:
        return ret;
 }
 
+struct rte_dev_event {
+       enum rte_dev_event_type type;   /**< device event type */
+       int subsystem;                  /**< subsystem id */
+       char *devname;                  /**< device name */
+};
+
 static int
 dev_uev_parse(const char *buf, struct rte_dev_event *event, int length)
 {