eal/bsd: fix build
authorAnatoly Burakov <anatoly.burakov@intel.com>
Thu, 20 Sep 2018 12:26:37 +0000 (13:26 +0100)
committerThomas Monjalon <thomas@monjalon.net>
Thu, 20 Sep 2018 12:51:52 +0000 (14:51 +0200)
When compiling on FreeBSD, lots of warnings/errors are thrown for
unused parameter. Fix these by marking the parameters as unused
in the code.

Fixes: 1009ba1704f9 ("mem: add internal API to get and set segment fd")
Fixes: 3a44687139eb ("mem: allow querying offset into segment fd")

Signed-off-by: Anatoly Burakov <anatoly.burakov@intel.com>
Acked-by: Bruce Richardson <bruce.richardson@intel.com>
lib/librte_eal/bsdapp/eal/eal_memalloc.c

index 06afbcc..a5847f0 100644 (file)
@@ -49,19 +49,21 @@ eal_memalloc_sync_with_primary(void)
 }
 
 int
-eal_memalloc_get_seg_fd(int list_idx, int seg_idx)
+eal_memalloc_get_seg_fd(int list_idx __rte_unused, int seg_idx __rte_unused)
 {
        return -ENOTSUP;
 }
 
 int
-eal_memalloc_set_seg_fd(int list_idx, int seg_idx, int fd)
+eal_memalloc_set_seg_fd(int list_idx __rte_unused, int seg_idx __rte_unused,
+               int fd __rte_unused)
 {
        return -ENOTSUP;
 }
 
 int
-eal_memalloc_get_seg_fd_offset(int list_idx, int seg_idx, size_t *offset)
+eal_memalloc_get_seg_fd_offset(int list_idx __rte_unused,
+               int seg_idx __rte_unused, size_t *offset __rte_unused)
 {
        return -ENOTSUP;
 }