> On Feb 2, 2024, at 11:28 PM, Stephen Hemminger <step...@networkplumber.org> > wrote: > > Caution: This message originated from an External Source. Use proper caution > when opening attachments, clicking links, or responding. > > > On Fri, 2 Feb 2024 11:32:38 -0800 > Andrew Boyer <andrew.bo...@amd.com> wrote: > >> + memset(ctx, 0, sizeof(*ctx)); >> + ctx->pending_work = true; >> + ctx->cmd.q_init.opcode = IONIC_CMD_Q_INIT; >> + ctx->cmd.q_init.type = q->type; >> + ctx->cmd.q_init.ver = lif->qtype_info[q->type].version; >> + ctx->cmd.q_init.index = rte_cpu_to_le_32(q->index); >> + ctx->cmd.q_init.flags = rte_cpu_to_le_16(IONIC_QINIT_F_ENA); >> + ctx->cmd.q_init.intr_index = rte_cpu_to_le_16(IONIC_INTR_NONE); >> + ctx->cmd.q_init.ring_size = rte_log2_u32(q->num_descs); >> + ctx->cmd.q_init.cq_ring_base = rte_cpu_to_le_64(cq->base_pa); >> + ctx->cmd.q_init.sg_ring_base = rte_cpu_to_le_64(q->sg_base_pa); >> + > > memset followed by assignment is technically slower than structure > initialization because it requires two writes to the data. > But the optimizer may in some cases figure that out. Thanks for looking. Since DPDK requires C11 now, and I see other users of compound literals in lib/, I'll respin this to use that instead. (The internet says unset fields are implicitly initialized to zero, hopefully that's correct.) It makes the diff a lot cleaner, too. Thanks, Andrew
- Re: [PATCH 04/13] net/ionic: fix missing volati... Boyer, Andrew
- [PATCH 08/13] net/ionic: report 1G and 200G link speeds ... Andrew Boyer
- [PATCH 07/13] net/ionic: fix RSS query routine Andrew Boyer
- [PATCH 09/13] net/ionic: add flexible firmware xstat cou... Andrew Boyer
- [PATCH 06/13] net/ionic: memcpy descriptors when using Q... Andrew Boyer
- [PATCH 10/13] net/ionic: fix device close sequence to av... Andrew Boyer
- [PATCH 11/13] net/ionic: optimize device close operation Andrew Boyer
- [PATCH 12/13] net/ionic: optimize device stop operation Andrew Boyer
- [PATCH 13/13] net/ionic: optimize device start operation Andrew Boyer
- Re: [PATCH 13/13] net/ionic: optimize device start ... Stephen Hemminger
- Re: [PATCH 13/13] net/ionic: optimize device st... Boyer, Andrew
- Re: [PATCH 00/13] net/ionic: miscellaneous fixes and imp... Patrick Robb
- Re: [PATCH 00/13] net/ionic: miscellaneous fixes an... Boyer, Andrew
- [PATCH v2 00/13] net/ionic: miscellaneous fixes and impr... Andrew Boyer
- [PATCH v2 01/13] net/ionic: add stat for completion queu... Andrew Boyer
- [PATCH v2 02/13] net/ionic: increase max supported MTU t... Andrew Boyer
- [PATCH v2 03/13] net/ionic: don't auto-enable Rx scatter... Andrew Boyer
- [PATCH v2 04/13] net/ionic: fix missing volatile type fo... Andrew Boyer
- [PATCH v2 05/13] net/ionic: replace non-standard type in... Andrew Boyer
- [PATCH v2 06/13] net/ionic: memcpy descriptors when usin... Andrew Boyer
- [PATCH v2 07/13] net/ionic: fix RSS query routine Andrew Boyer