From: Anatoly Burakov Date: Mon, 23 Apr 2018 11:14:13 +0000 (+0100) Subject: fbarray: make all fbarrays hidden files X-Git-Url: http://git.droids-corp.org/?a=commitdiff_plain;ds=sidebyside;h=2c8663f9d0063c47e87a77b20a921d9036070635;p=dpdk.git fbarray: make all fbarrays hidden files fbarray stores its data in a shared file, which is not hidden. This leads to polluting user's HOME directory with visible files when running DPDK as non-root. Change fbarray to always create hidden files by default. Signed-off-by: Anatoly Burakov Acked-by: Bruce Richardson --- diff --git a/lib/librte_eal/common/eal_filesystem.h b/lib/librte_eal/common/eal_filesystem.h index ad059ef37e..fe4c4554aa 100644 --- a/lib/librte_eal/common/eal_filesystem.h +++ b/lib/librte_eal/common/eal_filesystem.h @@ -13,7 +13,7 @@ /** Path of rte config file. */ #define RUNTIME_CONFIG_FMT "%s/.%s_config" -#define FBARRAY_FMT "%s/%s_%s" +#define FBARRAY_FMT "%s/.%s_%s" #include #include