From: Stephen Hemminger <stephen@networkplumber.org>
To: Dmitry Kozlyuk <dmitry.kozliuk@gmail.com>
Cc: dev@dpdk.org, Anatoly Burakov <anatoly.burakov@intel.com>,
Lewis Donzis <lew@perftech.com>
Subject: Re: [PATCH] eal: support including mapped memory in core dump
Date: Wed, 23 Oct 2024 19:31:20 -0700 [thread overview]
Message-ID: <20241023193120.6d6ed87f@hermes.local> (raw)
In-Reply-To: <20241023231859.1323727-1-kozlyuk@bifit.com>
On Thu, 24 Oct 2024 02:18:59 +0300
Dmitry Kozlyuk <dmitry.kozliuk@gmail.com> wrote:
> --- a/lib/eal/common/eal_internal_cfg.h
> +++ b/lib/eal/common/eal_internal_cfg.h
> @@ -103,6 +103,8 @@ struct internal_config {
> struct simd_bitwidth max_simd_bitwidth;
> /**< max simd bitwidth path to use */
> size_t huge_worker_stack_size; /**< worker thread stack size */
> + /** True to include mapped hugepages in coredump. */
> + unsigned int huge_dump;
No need to waste 4 bytes for a flag.
Find an existing one byte hole and use that.
struct internal_config {
volatile size_t memory; /* 0 8 */
volatile unsigned int force_nchannel; /* 8 4 */
volatile unsigned int force_nrank; /* 12 4 */
volatile unsigned int no_hugetlbfs; /* 16 4 */
struct hugepage_file_discipline hugepage_file; /* 20 2 */
/* XXX 2 bytes hole, try to pack */
volatile unsigned int no_pci; /* 24 4 */
volatile unsigned int no_hpet; /* 28 4 */
volatile unsigned int vmware_tsc_map; /* 32 4 */
volatile unsigned int no_shconf; /* 36 4 */
volatile unsigned int in_memory; /* 40 4 */
volatile unsigned int create_uio_dev; /* 44 4 */
volatile enum rte_proc_type_t process_type; /* 48 4 */
volatile unsigned int force_sockets; /* 52 4 */
volatile volatile uint64_t socket_mem; /* 56 256 */
/* --- cacheline 4 boundary (256 bytes) was 56 bytes ago --- */
volatile unsigned int force_socket_limits; /* 312 4 */
/* XXX 4 bytes hole, try to pack */
/* --- cacheline 5 boundary (320 bytes) --- */
volatile volatile uint64_t socket_limit; /* 320 256 */
/* --- cacheline 9 boundary (576 bytes) --- */
uintptr_t base_virtaddr; /* 576 8 */
volatile unsigned int legacy_mem; /* 584 4 */
volatile unsigned int match_allocations; /* 588 4 */
volatile unsigned int single_file_segments; /* 592 4 */
volatile int syslog_facility; /* 596 4 */
volatile enum rte_intr_mode vfio_intr_mode; /* 600 4 */
rte_uuid_t vfio_vf_token; /* 604 16 */
/* XXX 4 bytes hole, try to pack */
char * hugefile_prefix; /* 624 8 */
char * hugepage_dir; /* 632 8 */
/* --- cacheline 10 boundary (640 bytes) --- */
char * user_mbuf_pool_ops_name; /* 640 8 */
unsigned int num_hugepage_sizes; /* 648 4 */
/* XXX 4 bytes hole, try to pack */
struct hugepage_info hugepage_info[3]; /* 656 12720 */
/* --- cacheline 209 boundary (13376 bytes) --- */
enum rte_iova_mode iova_mode; /* 13376 4 */
/* XXX 4 bytes hole, try to pack */
rte_cpuset_t ctrl_cpuset; /* 13384 128 */
/* --- cacheline 211 boundary (13504 bytes) was 8 bytes ago --- */
volatile unsigned int init_complete; /* 13512 4 */
unsigned int no_telemetry; /* 13516 4 */
struct simd_bitwidth max_simd_bitwidth; /* 13520 4 */
/* XXX last struct has 1 hole */
/* XXX 4 bytes hole, try to pack */
size_t huge_worker_stack_size; /* 13528 8 */
/* size: 13536, cachelines: 212, members: 34 */
/* sum members: 13514, holes: 6, sum holes: 22 */
/* member types with holes: 1, total: 1 */
/* last cacheline: 32 bytes */
};
next prev parent reply other threads:[~2024-10-24 2:31 UTC|newest]
Thread overview: 21+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-10-23 23:18 [PATCH] eal: support including mapped memory in core dump Dmitry Kozlyuk
2024-10-24 2:19 ` Stephen Hemminger
2024-10-24 2:31 ` Stephen Hemminger [this message]
2024-10-24 7:07 ` Morten Brørup
2024-10-24 7:22 ` Morten Brørup
2024-10-24 8:25 ` Dmitry Kozlyuk
2024-10-24 12:55 ` Lewis Donzis
2024-10-24 16:38 ` Stephen Hemminger
2024-10-24 20:54 ` Dmitry Kozlyuk
2024-10-25 0:22 ` Dmitry Kozlyuk
2024-10-25 20:26 ` [PATCH v2 0/2] Hugepage inclusion " Dmitry Kozlyuk
2024-10-25 20:26 ` [PATCH v2 1/2] contigmem: support including mapped buffers " Dmitry Kozlyuk
2024-10-26 11:43 ` Lewis Donzis
2024-10-28 13:26 ` Dmitry Kozlyuk
2024-10-28 13:35 ` Lewis Donzis
2024-11-19 15:48 ` Bruce Richardson
2024-11-19 18:27 ` Dmitry Kozlyuk
2024-11-19 23:09 ` Thomas Monjalon
2024-11-19 15:43 ` Bruce Richardson
2024-10-25 20:26 ` [PATCH v2 2/2] doc: add instruction for including hugepages " Dmitry Kozlyuk
2024-10-26 3:18 ` [PATCH v2 0/2] Hugepage inclusion " Morten Brørup
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20241023193120.6d6ed87f@hermes.local \
--to=stephen@networkplumber.org \
--cc=anatoly.burakov@intel.com \
--cc=dev@dpdk.org \
--cc=dmitry.kozliuk@gmail.com \
--cc=lew@perftech.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).