]> git.droids-corp.org - dpdk.git/commitdiff
add missing static keyword to globals
authorFerruh Yigit <ferruh.yigit@intel.com>
Sun, 28 Oct 2018 23:57:38 +0000 (23:57 +0000)
committerThomas Monjalon <thomas@monjalon.net>
Mon, 29 Oct 2018 01:01:08 +0000 (02:01 +0100)
Some global variables can indeed be static, add static keyword to them.

Signed-off-by: Ferruh Yigit <ferruh.yigit@intel.com>
Acked-by: Jerin Jacob <jerin.jacob@caviumnetworks.com>
Acked-by: Shreyansh Jain <shreyansh.jain@nxp.com>
42 files changed:
app/pdump/main.c
drivers/bus/dpaa/base/fman/netcfg_layer.c
drivers/bus/dpaa/dpaa_bus.c
drivers/bus/vdev/vdev.c
drivers/compress/octeontx/otx_zip_pmd.c
drivers/crypto/dpaa2_sec/dpaa2_sec_dpseci.c
drivers/crypto/dpaa_sec/dpaa_sec.c
drivers/crypto/null/null_crypto_pmd_ops.c
drivers/crypto/scheduler/scheduler_failover.c
drivers/crypto/scheduler/scheduler_multicore.c
drivers/crypto/scheduler/scheduler_pkt_size_distr.c
drivers/crypto/scheduler/scheduler_pmd.c
drivers/crypto/scheduler/scheduler_pmd_ops.c
drivers/crypto/scheduler/scheduler_roundrobin.c
drivers/mempool/dpaa/dpaa_mempool.c
drivers/mempool/dpaa2/dpaa2_hw_mempool.c
drivers/net/cxgbe/cxgbe_flow.c
drivers/net/failsafe/failsafe_args.c
drivers/net/fm10k/fm10k_ethdev.c
drivers/net/i40e/base/i40e_diag.c
drivers/net/i40e/base/i40e_diag.h
drivers/net/i40e/i40e_flow.c
drivers/net/i40e/i40e_vf_representor.c
drivers/net/ifc/ifcvf_vdpa.c
drivers/net/ixgbe/ixgbe_vf_representor.c
drivers/net/qede/base/bcm_osal.c
drivers/net/qede/qede_ethdev.c
drivers/net/qede/qede_main.c
drivers/net/sfc/sfc_rx.c
drivers/net/softnic/rte_eth_softnic.c
drivers/net/tap/tap_bpf_insns.h
drivers/net/tap/tap_flow.c
drivers/raw/dpaa2_qdma/dpaa2_qdma.c
drivers/raw/skeleton_rawdev/skeleton_rawdev.c
lib/librte_eal/common/eal_common_bus.c
lib/librte_eal/common/eal_common_class.c
lib/librte_eal/common/eal_common_devargs.c
lib/librte_eal/linuxapp/eal/eal_memalloc.c
lib/librte_ethdev/rte_class_eth.c
lib/librte_ethdev/rte_ethdev.c
lib/librte_eventdev/rte_eventdev.c
lib/librte_net/net_crc_sse.h

index ac22871241a5c1b34a0c526f60cdbb88aa208713..d96556ecf9922b975016aeaa74666dd3c8dfb4a3 100644 (file)
@@ -81,7 +81,7 @@ enum pdump_by {
        DEVICE_ID = 2
 };
 
-const char *valid_pdump_arguments[] = {
+static const char * const valid_pdump_arguments[] = {
        PDUMP_PORT_ARG,
        PDUMP_PCI_ARG,
        PDUMP_QUEUE_ARG,
@@ -136,9 +136,9 @@ struct parse_val {
        uint64_t val;
 };
 
-int num_tuples;
+static int num_tuples;
 static struct rte_eth_conf port_conf_default;
-volatile uint8_t quit_signal;
+static volatile uint8_t quit_signal;
 
 /**< display usage */
 static void
index 031c6f1aa89beea28155768a6c7ce1f83c91abc4..6b5224203a63e1316ac5b62354058e47e59e2b26 100644 (file)
@@ -21,7 +21,7 @@
 /* This data structure contaings all configurations information
  * related to usages of DPA devices.
  */
-struct netcfg_info *netcfg;
+static struct netcfg_info *netcfg;
 /* fd to open a socket for making ioctl request to disable/enable shared
  *  interfaces.
  */
index 78b54bc9d2b7e1a2088e4893eeecfce6894194a3..203f60dc18cb683f7f6700a1998a7e6ccebce013 100644 (file)
@@ -47,7 +47,7 @@ int dpaa_logtype_mempool;
 int dpaa_logtype_pmd;
 int dpaa_logtype_eventdev;
 
-struct rte_dpaa_bus rte_dpaa_bus;
+static struct rte_dpaa_bus rte_dpaa_bus;
 struct netcfg_info *dpaa_netcfg;
 
 /* define a variable to hold the portal_key, once created.*/
@@ -624,7 +624,7 @@ rte_dpaa_get_iommu_class(void)
        return RTE_IOVA_PA;
 }
 
-struct rte_dpaa_bus rte_dpaa_bus = {
+static struct rte_dpaa_bus rte_dpaa_bus = {
        .bus = {
                .scan = rte_dpaa_bus_scan,
                .probe = rte_dpaa_bus_probe,
index 6952724bdd8a2d4a52d218ed4da41934eab3bc6c..9c66bdc78dda0a8d04388b44c515deb5c9710fd7 100644 (file)
@@ -41,7 +41,7 @@ static struct vdev_device_list vdev_device_list =
 static rte_spinlock_recursive_t vdev_device_list_lock =
        RTE_SPINLOCK_RECURSIVE_INITIALIZER;
 
-struct vdev_driver_list vdev_driver_list =
+static struct vdev_driver_list vdev_driver_list =
        TAILQ_HEAD_INITIALIZER(vdev_driver_list);
 
 struct vdev_custom_scan {
index 9d13f933198a5e07d0f4a94ce300375ea663fc5d..67ff5066fa6625f12d77c1e917a78e0e9efbabcd 100644 (file)
@@ -533,7 +533,7 @@ zip_pmd_dequeue_burst_sync(void *queue_pair,
        return nb_dequeued;
 }
 
-struct rte_compressdev_ops octtx_zip_pmd_ops = {
+static struct rte_compressdev_ops octtx_zip_pmd_ops = {
                .dev_configure          = zip_pmd_config,
                .dev_start              = zip_pmd_start,
                .dev_stop               = zip_pmd_stop,
index 863edd2ee825d3ec37823dc7ebd8983b264562a8..6095c6021812b6f3f6aadb4fd83e79456b93e1c1 100644 (file)
@@ -3267,7 +3267,7 @@ dpaa2_sec_capabilities_get(void *device __rte_unused)
        return dpaa2_sec_security_cap;
 }
 
-struct rte_security_ops dpaa2_sec_security_ops = {
+static const struct rte_security_ops dpaa2_sec_security_ops = {
        .session_create = dpaa2_sec_security_session_create,
        .session_update = NULL,
        .session_stats_get = NULL,
index 54f1913f2bdab7ec73f87341dca21c664d5d3c81..d83e745419c034fe51eaeb4145059302a6a696ba 100644 (file)
@@ -2270,7 +2270,7 @@ dpaa_sec_capabilities_get(void *device __rte_unused)
        return dpaa_sec_security_cap;
 }
 
-struct rte_security_ops dpaa_sec_security_ops = {
+static const struct rte_security_ops dpaa_sec_security_ops = {
        .session_create = dpaa_sec_security_session_create,
        .session_update = NULL,
        .session_stats_get = NULL,
index bb2b6e144b45bdbe4835ae366f670281b24a27cd..2bdcd019ef471a78da0000faa49b075d5773914f 100644 (file)
@@ -308,7 +308,7 @@ null_crypto_pmd_sym_session_clear(struct rte_cryptodev *dev,
        }
 }
 
-struct rte_cryptodev_ops pmd_ops = {
+static struct rte_cryptodev_ops pmd_ops = {
                .dev_configure          = null_crypto_pmd_config,
                .dev_start              = null_crypto_pmd_start,
                .dev_stop               = null_crypto_pmd_stop,
index ddfb5b815c2c3cb0ff457e20f3ad16e5bfbe7326..f254df7ecd4d3673850ddf1388d18bded61f51e6 100644 (file)
@@ -197,7 +197,7 @@ scheduler_create_private_ctx(__rte_unused struct rte_cryptodev *dev)
        return 0;
 }
 
-struct rte_cryptodev_scheduler_ops scheduler_fo_ops = {
+static struct rte_cryptodev_scheduler_ops scheduler_fo_ops = {
        slave_attach,
        slave_detach,
        scheduler_start,
@@ -208,7 +208,7 @@ struct rte_cryptodev_scheduler_ops scheduler_fo_ops = {
        NULL    /*option_get */
 };
 
-struct rte_cryptodev_scheduler fo_scheduler = {
+static struct rte_cryptodev_scheduler fo_scheduler = {
                .name = "failover-scheduler",
                .description = "scheduler which enqueues to the primary slave, "
                                "and only then enqueues to the secondary slave "
index d410e69d33cb7ac06abcfab1f8b4342399ce6738..90ec57b2f11d5e04e69200af19f86ae341abaa47 100644 (file)
@@ -392,7 +392,7 @@ exit:
        return -1;
 }
 
-struct rte_cryptodev_scheduler_ops scheduler_mc_ops = {
+static struct rte_cryptodev_scheduler_ops scheduler_mc_ops = {
        slave_attach,
        slave_detach,
        scheduler_start,
@@ -403,7 +403,7 @@ struct rte_cryptodev_scheduler_ops scheduler_mc_ops = {
        NULL    /* option_get */
 };
 
-struct rte_cryptodev_scheduler mc_scheduler = {
+static struct rte_cryptodev_scheduler mc_scheduler = {
                .name = "multicore-scheduler",
                .description = "scheduler which will run burst across multiple cpu cores",
                .mode = CDEV_SCHED_MODE_MULTICORE,
index 74129b66781f0e8c73d62a70b359c6c114124afa..c50efbac2b0a1609a6f008802cdcc140165f1888 100644 (file)
@@ -398,7 +398,7 @@ scheduler_option_get(struct rte_cryptodev *dev, uint32_t option_type,
        return 0;
 }
 
-struct rte_cryptodev_scheduler_ops scheduler_ps_ops = {
+static struct rte_cryptodev_scheduler_ops scheduler_ps_ops = {
        slave_attach,
        slave_detach,
        scheduler_start,
@@ -409,7 +409,7 @@ struct rte_cryptodev_scheduler_ops scheduler_ps_ops = {
        scheduler_option_get
 };
 
-struct rte_cryptodev_scheduler psd_scheduler = {
+static struct rte_cryptodev_scheduler psd_scheduler = {
                .name = "packet-size-based-scheduler",
                .description = "scheduler which will distribute crypto op "
                                "burst based on the packet size",
index a9221a94688f5ee8ad7d4ba6c2e8506197c3781b..3e6d743da7ec0caf5fd9c3f57054245adc21c065 100644 (file)
@@ -38,7 +38,7 @@ struct scheduler_init_params {
 #define RTE_CRYPTODEV_VDEV_COREMASK            ("coremask")
 #define RTE_CRYPTODEV_VDEV_CORELIST            ("corelist")
 
-const char *scheduler_valid_params[] = {
+static const char * const scheduler_valid_params[] = {
        RTE_CRYPTODEV_VDEV_NAME,
        RTE_CRYPTODEV_VDEV_SLAVE,
        RTE_CRYPTODEV_VDEV_MODE,
index 778071ca022ceb02ba89536b8eb36e881267c367..939105aa89ef52ce91aebe61b1880bb48dc40d9a 100644 (file)
@@ -522,7 +522,7 @@ scheduler_pmd_sym_session_clear(struct rte_cryptodev *dev,
        }
 }
 
-struct rte_cryptodev_ops scheduler_pmd_ops = {
+static struct rte_cryptodev_ops scheduler_pmd_ops = {
                .dev_configure          = scheduler_pmd_config,
                .dev_start              = scheduler_pmd_start,
                .dev_stop               = scheduler_pmd_stop,
index c7082a64ee67edbb24cb1c3873559037f08ec4bf..f858ca2e84d4264eb9e54f7613f143703fbcd405 100644 (file)
@@ -190,7 +190,7 @@ scheduler_create_private_ctx(__rte_unused struct rte_cryptodev *dev)
        return 0;
 }
 
-struct rte_cryptodev_scheduler_ops scheduler_rr_ops = {
+static struct rte_cryptodev_scheduler_ops scheduler_rr_ops = {
        slave_attach,
        slave_detach,
        scheduler_start,
@@ -201,7 +201,7 @@ struct rte_cryptodev_scheduler_ops scheduler_rr_ops = {
        NULL    /* option_get */
 };
 
-struct rte_cryptodev_scheduler scheduler = {
+static struct rte_cryptodev_scheduler scheduler = {
                .name = "roundrobin-scheduler",
                .description = "scheduler which will round robin burst across "
                                "slave crypto devices",
index b05fb7b9dcaa617c790ddf82eff4d0ec27ab4464..021b366feb7615fca1991828ceea2e6f29d73546 100644 (file)
@@ -328,7 +328,7 @@ dpaa_populate(struct rte_mempool *mp, unsigned int max_objs,
                                               obj_cb, obj_cb_arg);
 }
 
-struct rte_mempool_ops dpaa_mpool_ops = {
+static const struct rte_mempool_ops dpaa_mpool_ops = {
        .name = DPAA_MEMPOOL_OPS_NAME,
        .alloc = dpaa_mbuf_create_pool,
        .free = dpaa_mbuf_free_pool,
index c5f60c5c6449b51ad068ddce45cb4b6665dd6ac2..790cded80342432422af3b37c28786b92ffabc25 100644 (file)
@@ -402,7 +402,7 @@ dpaa2_populate(struct rte_mempool *mp, unsigned int max_objs,
                                               obj_cb, obj_cb_arg);
 }
 
-struct rte_mempool_ops dpaa2_mpool_ops = {
+static const struct rte_mempool_ops dpaa2_mpool_ops = {
        .name = DPAA2_MEMPOOL_OPS_NAME,
        .alloc = rte_hw_mbuf_create_pool,
        .free = rte_hw_mbuf_free_pool,
index ccd165b56be283c92cd67d7e98422d97051b0a06..54ec7e595251af15b5f0e9cb247468a5d200323f 100644 (file)
@@ -667,7 +667,7 @@ action_switch:
        return 0;
 }
 
-struct chrte_fparse parseitem[] = {
+static struct chrte_fparse parseitem[] = {
        [RTE_FLOW_ITEM_TYPE_ETH] = {
                .fptr  = ch_rte_parsetype_eth,
                .dmask = &(const struct rte_flow_item_eth){
index 626883ce2039361a227749700309e72128696aa2..c04ea08926ff0803fb82ab63b4d02a442063b08f 100644 (file)
@@ -25,7 +25,7 @@ typedef int (parse_cb)(struct rte_eth_dev *dev, const char *params,
 uint64_t hotplug_poll = FAILSAFE_HOTPLUG_DEFAULT_TIMEOUT_MS;
 int mac_from_arg = 0;
 
-const char *pmd_failsafe_init_parameters[] = {
+static const char * const pmd_failsafe_init_parameters[] = {
        PMD_FAILSAFE_HOTPLUG_POLL_KVARG,
        PMD_FAILSAFE_MAC_KVARG,
        NULL,
index d2930bc24fbdc2986103e7dea61897ee94101b8b..c852022dd9a5811a02abd57629e4b1c9c7d22c6b 100644 (file)
@@ -72,7 +72,7 @@ struct fm10k_xstats_name_off {
        unsigned offset;
 };
 
-struct fm10k_xstats_name_off fm10k_hw_stats_strings[] = {
+static const struct fm10k_xstats_name_off fm10k_hw_stats_strings[] = {
        {"completion_timeout_count", offsetof(struct fm10k_hw_stats, timeout)},
        {"unsupported_requests_count", offsetof(struct fm10k_hw_stats, ur)},
        {"completer_abort_count", offsetof(struct fm10k_hw_stats, ca)},
@@ -87,7 +87,7 @@ struct fm10k_xstats_name_off fm10k_hw_stats_strings[] = {
 #define FM10K_NB_HW_XSTATS (sizeof(fm10k_hw_stats_strings) / \
                sizeof(fm10k_hw_stats_strings[0]))
 
-struct fm10k_xstats_name_off fm10k_hw_stats_rx_q_strings[] = {
+static const struct fm10k_xstats_name_off fm10k_hw_stats_rx_q_strings[] = {
        {"packets", offsetof(struct fm10k_hw_stats_q, rx_packets)},
        {"bytes", offsetof(struct fm10k_hw_stats_q, rx_bytes)},
        {"dropped", offsetof(struct fm10k_hw_stats_q, rx_drops)},
@@ -96,7 +96,7 @@ struct fm10k_xstats_name_off fm10k_hw_stats_rx_q_strings[] = {
 #define FM10K_NB_RX_Q_XSTATS (sizeof(fm10k_hw_stats_rx_q_strings) / \
                sizeof(fm10k_hw_stats_rx_q_strings[0]))
 
-struct fm10k_xstats_name_off fm10k_hw_stats_tx_q_strings[] = {
+static const struct fm10k_xstats_name_off fm10k_hw_stats_tx_q_strings[] = {
        {"packets", offsetof(struct fm10k_hw_stats_q, tx_packets)},
        {"bytes", offsetof(struct fm10k_hw_stats_q, tx_bytes)},
 };
index f94c117aeda60ffd054ad5b249172fecc78fc560..3ccbea4829b3a78feb415f78d3c4ba54f296b2e2 100644 (file)
@@ -55,7 +55,7 @@ static enum i40e_status_code i40e_diag_reg_pattern_test(struct i40e_hw *hw,
        return I40E_SUCCESS;
 }
 
-struct i40e_diag_reg_test_info i40e_reg_list[] = {
+static struct i40e_diag_reg_test_info i40e_reg_list[] = {
        /* offset               mask         elements   stride */
        {I40E_QTX_CTL(0),       0x0000FFBF, 1, I40E_QTX_CTL(1) - I40E_QTX_CTL(0)},
        {I40E_PFINT_ITR0(0),    0x00000FFF, 3, I40E_PFINT_ITR0(1) - I40E_PFINT_ITR0(0)},
index 1a781f83d526b1c94faf5613eb604aa4ba867bd0..4434fc960b4eb2a712f6a71d1b9ac8d2cb51b321 100644 (file)
@@ -21,8 +21,6 @@ struct i40e_diag_reg_test_info {
        u32 stride;     /* bytes between each element */
 };
 
-extern struct i40e_diag_reg_test_info i40e_reg_list[];
-
 enum i40e_status_code i40e_diag_set_loopback(struct i40e_hw *hw,
                                             enum i40e_lb_mode mode);
 enum i40e_status_code i40e_diag_fw_alive_test(struct i40e_hw *hw);
index 7d787c173702b08ddf71dab04adc05b84c984fd2..3694df255ba41239a992cd220dcf37922cf7e0b6 100644 (file)
@@ -133,8 +133,8 @@ const struct rte_flow_ops i40e_flow_ops = {
        .flush = i40e_flow_flush,
 };
 
-union i40e_filter_t cons_filter;
-enum rte_filter_type cons_filter_type = RTE_ETH_FILTER_NONE;
+static union i40e_filter_t cons_filter;
+static enum rte_filter_type cons_filter_type = RTE_ETH_FILTER_NONE;
 
 /* Pattern matched ethertype filter */
 static enum rte_flow_item_type pattern_ethertype[] = {
index a523e50da6d811fef98db46709f19f45709a2561..45a15d3ab45a83cbac0229ba48c06554b5c838b2 100644 (file)
@@ -420,7 +420,7 @@ i40e_vf_representor_vlan_pvid_set(struct rte_eth_dev *ethdev, uint16_t vlan_id,
                representor->vf_id, vlan_id);
 }
 
-struct eth_dev_ops i40e_representor_dev_ops = {
+static const struct eth_dev_ops i40e_representor_dev_ops = {
        .dev_infos_get        = i40e_vf_representor_dev_infos_get,
 
        .dev_start            = i40e_vf_representor_dev_start,
index e1edb328cc1a7968d655cea621e6964d067a9875..97a57f182b9b55d3263afc1da9b52c9f5dde4159 100644 (file)
@@ -718,7 +718,7 @@ ifcvf_get_protocol_features(int did __rte_unused, uint64_t *features)
        return 0;
 }
 
-struct rte_vdpa_dev_ops ifcvf_ops = {
+static struct rte_vdpa_dev_ops ifcvf_ops = {
        .get_queue_num = ifcvf_get_queue_num,
        .get_features = ifcvf_get_vdpa_features,
        .get_protocol_features = ifcvf_get_protocol_features,
index 917ee68fc909dba581f05ec32efdcff15ddb467f..5d2e3e0238954fefaa213c7aeb2e9346f6870126 100644 (file)
@@ -135,7 +135,7 @@ ixgbe_vf_representor_vlan_strip_queue_set(struct rte_eth_dev *ethdev,
                representor->vf_id, on);
 }
 
-struct eth_dev_ops ixgbe_vf_representor_dev_ops = {
+static const struct eth_dev_ops ixgbe_vf_representor_dev_ops = {
        .dev_infos_get          = ixgbe_vf_representor_dev_infos_get,
 
        .dev_start              = ixgbe_vf_representor_dev_start,
index d5d6f8e201ccbf0cfdf3a21324415a32c63a2271..693328f117c7983980e6b62d4026155c6a8f0c45 100644 (file)
@@ -17,7 +17,7 @@
 /* Array of memzone pointers */
 static const struct rte_memzone *ecore_mz_mapping[RTE_MAX_MEMZONE];
 /* Counter to track current memzone allocated */
-uint16_t ecore_mz_count;
+static uint16_t ecore_mz_count;
 
 unsigned long qede_log2_align(unsigned long n)
 {
index 8c41e1f4c6b9015dbcadc3284e4a44c4b2207fa1..e20df3654697fc6e770fdd10e9440b665cc71869 100644 (file)
@@ -1089,7 +1089,7 @@ static void qede_dev_stop(struct rte_eth_dev *eth_dev)
        DP_INFO(edev, "Device is stopped\n");
 }
 
-const char *valid_args[] = {
+static const char * const valid_args[] = {
        QEDE_NPAR_TX_SWITCHING,
        QEDE_VF_TX_SWITCHING,
        NULL,
index c361f24d5b3e12a481a51939fc31733e3d6667c2..a7cd68cde8ec1ba2b3695ed3aa09d3a26677009c 100644 (file)
@@ -17,7 +17,7 @@
 /* Global variable to hold absolute path of fw file */
 char fw_file[PATH_MAX];
 
-const char *QEDE_DEFAULT_FIRMWARE =
+static const char * const QEDE_DEFAULT_FIRMWARE =
        "/lib/firmware/qed/qed_init_values-8.37.7.0.bin";
 
 static void
index 553576485eb70d89bf5c2517885f8dde31ae8a73..c792e0b2e44625bc97dd0c3172d9d11af84e0074 100644 (file)
@@ -1126,7 +1126,7 @@ sfc_rx_qfini(struct sfc_adapter *sa, unsigned int sw_index)
 /*
  * Mapping between RTE RSS hash functions and their EFX counterparts.
  */
-struct sfc_rss_hf_rte_to_efx sfc_rss_hf_map[] = {
+static const struct sfc_rss_hf_rte_to_efx sfc_rss_hf_map[] = {
        { ETH_RSS_NONFRAG_IPV4_TCP,
          EFX_RX_HASH(IPV4_TCP, 4TUPLE) },
        { ETH_RSS_NONFRAG_IPV4_UDP,
index 4ecfe95637b5fbb3e05163fc241ae782ee748786..743a7c5854cde02f2edf2c3b7f35377380b75bc3 100644 (file)
@@ -28,7 +28,7 @@
 #define PMD_PARAM_TM_QSIZE2                                "tm_qsize2"
 #define PMD_PARAM_TM_QSIZE3                                "tm_qsize3"
 
-static const char *pmd_valid_args[] = {
+static const char * const pmd_valid_args[] = {
        PMD_PARAM_FIRMWARE,
        PMD_PARAM_CONN_PORT,
        PMD_PARAM_CPU_ID,
@@ -47,7 +47,7 @@ static const char welcome[] =
 
 static const char prompt[] = "softnic> ";
 
-struct softnic_conn_params conn_params_default = {
+static const struct softnic_conn_params conn_params_default = {
        .welcome = welcome,
        .prompt = prompt,
        .addr = "0.0.0.0",
index 79e3e66b166ab395dddaa5b541de5a6ad4315c29..1a91bbad13389436938498b2a1dc3058cf65e9e4 100644 (file)
@@ -5,7 +5,7 @@
 #include <tap_bpf.h>
 
 /* bpf_insn array matching cls_q section. See tap_bpf_program.c file */
-struct bpf_insn cls_q_insns[] = {
+static struct bpf_insn cls_q_insns[] = {
        {0x61,    2,    1,       52, 0x00000000},
        {0x18,    3,    0,        0, 0xdeadbeef},
        {0x00,    0,    0,        0, 0x00000000},
@@ -24,7 +24,7 @@ struct bpf_insn cls_q_insns[] = {
 };
 
 /* bpf_insn array matching l3_l4 section. see tap_bpf_program.c file */
-struct bpf_insn l3_l4_hash_insns[] = {
+static struct bpf_insn l3_l4_hash_insns[] = {
        {0xbf,    7,    1,        0, 0x00000000},
        {0x61,    8,    7,       16, 0x00000000},
        {0x61,    6,    7,       76, 0x00000000},
index 3ba69451a86fa69552e8b49326bd782fbdb2cd67..d155618fc8813fdb0c5ea145b875437cec720d3c 100644 (file)
@@ -1811,7 +1811,7 @@ tap_flow_implicit_flush(struct pmd_internals *pmd, struct rte_flow_error *error)
 #define KEY_IDX_OFFSET (3 * MAX_RSS_KEYS)
 #define SEC_NAME_CLS_Q "cls_q"
 
-const char *sec_name[SEC_MAX] = {
+static const char *sec_name[SEC_MAX] = {
        [SEC_L3_L4] = "l3_l4",
 };
 
index 44503331e0eed536011b9d2f9225d55cbdfbe1b8..f474442d4a6a1a1ce9bfe95649ee7b5aeeca65a3 100644 (file)
@@ -34,10 +34,10 @@ static struct qdma_hw_queue_list qdma_queue_list
        = TAILQ_HEAD_INITIALIZER(qdma_queue_list);
 
 /* QDMA Virtual Queues */
-struct qdma_virt_queue *qdma_vqs;
+static struct qdma_virt_queue *qdma_vqs;
 
 /* QDMA per core data */
-struct qdma_per_core_info qdma_core_info[RTE_MAX_LCORE];
+static struct qdma_per_core_info qdma_core_info[RTE_MAX_LCORE];
 
 static struct qdma_hw_queue *
 alloc_hw_queue(uint32_t lcore_id)
index 6518a2d9ab8af0f3a884cb6da0a9a2b5a2bfbaa0..d7630fc698226f5b42c219531b59ce6ea53b6015 100644 (file)
@@ -32,7 +32,7 @@
 int skeleton_pmd_logtype;
 
 /* Count of instances */
-uint16_t skeldev_init_once;
+static uint16_t skeldev_init_once;
 
 /**< Rawdev Skeleton dummy driver name */
 #define SKELETON_PMD_RAWDEV_NAME rawdev_skeleton
index 62b731869a13f81f9a58ebb553de6664e3f95a9f..c8f1901f0b62334c6511f9b631b9eb43f1f56a7c 100644 (file)
@@ -41,7 +41,7 @@
 
 #include "eal_private.h"
 
-struct rte_bus_list rte_bus_list =
+static struct rte_bus_list rte_bus_list =
        TAILQ_HEAD_INITIALIZER(rte_bus_list);
 
 void
index 404a9065ad20c35bf4b8e18862293d180de2c5fa..d922266d0fcda90f6c279c9a6527bf85968d99bd 100644 (file)
@@ -9,7 +9,7 @@
 #include <rte_class.h>
 #include <rte_debug.h>
 
-struct rte_class_list rte_class_list =
+static struct rte_class_list rte_class_list =
        TAILQ_HEAD_INITIALIZER(rte_class_list);
 
 __rte_experimental void
index c1b06095e0022a4ac6ddded5d99d8749429eac5c..b7b9cb69e439d49b934bc28647d99cfee6c5dd2a 100644 (file)
@@ -25,7 +25,7 @@
 TAILQ_HEAD(rte_devargs_list, rte_devargs);
 
 /** Global list of user devices */
-struct rte_devargs_list devargs_list =
+static struct rte_devargs_list devargs_list =
        TAILQ_HEAD_INITIALIZER(devargs_list);
 
 static size_t
index f6a0098aff2b94a5dd56ddc997bc43e822b672d4..48b9c73603e4e3068c1b43db1c12bfc64eb31fbf 100644 (file)
@@ -61,7 +61,7 @@ const int anonymous_hugepages_supported =
  * and/or memfd with hugetlbfs, so we need to be able to adjust this flag at
  * runtime, and fall back to anonymous memory.
  */
-int memfd_create_supported =
+static int memfd_create_supported =
 #ifdef MFD_HUGETLB
 #define MEMFD_SUPPORTED
                1;
index cebbb642d538eb4b16c999529a330f0a339809b8..cb99c92ece9310c9124f9f901bc0812166683e8c 100644 (file)
@@ -166,7 +166,7 @@ eth_dev_iterate(const void *start,
        return edev;
 }
 
-struct rte_class rte_class_eth = {
+static struct rte_class rte_class_eth = {
        .dev_iterate = eth_dev_iterate,
 };
 
index b2ac590ae64ec79eb3d4db48d19809984bba99d2..9d34813892c3273e45bcc51e3861af03b2948f12 100644 (file)
@@ -4311,7 +4311,7 @@ enum rte_eth_switch_domain_state {
  * RTE_MAX_ETHPORTS elements as there cannot be more active switch domains than
  * ethdev ports in a single process.
  */
-struct rte_eth_dev_switch {
+static struct rte_eth_dev_switch {
        enum rte_eth_switch_domain_state state;
 } rte_eth_switch_domains[RTE_MAX_ETHPORTS];
 
index 32c53199b9fd58d0b7be7b6edddec05dfd9530b8..e70315e49011deb5d8ade0295c66d7d8447900a9 100644 (file)
@@ -35,7 +35,7 @@
 #include "rte_eventdev.h"
 #include "rte_eventdev_pmd.h"
 
-struct rte_eventdev rte_event_devices[RTE_EVENT_MAX_DEVS];
+static struct rte_eventdev rte_event_devices[RTE_EVENT_MAX_DEVS];
 
 struct rte_eventdev *rte_eventdevs = &rte_event_devices[0];
 
index da81524370ba23f667c77bce076a98f98576c2eb..1c7b7a548acbe9ca6881b0a7ec46c24f0103a8d0 100644 (file)
@@ -21,8 +21,8 @@ struct crc_pclmulqdq_ctx {
        __m128i rk7_rk8;
 };
 
-struct crc_pclmulqdq_ctx crc32_eth_pclmulqdq __rte_aligned(16);
-struct crc_pclmulqdq_ctx crc16_ccitt_pclmulqdq __rte_aligned(16);
+static struct crc_pclmulqdq_ctx crc32_eth_pclmulqdq __rte_aligned(16);
+static struct crc_pclmulqdq_ctx crc16_ccitt_pclmulqdq __rte_aligned(16);
 /**
  * @brief Performs one folding round
  *