From: Denis Bolotin <denis.bolo...@cavium.com> Date: Tue, 31 Jul 2018 10:26:06 +0300
> +int qed_dcbx_get_priority_tc(struct qed_hwfn *p_hwfn, u8 pri, u8 *p_tc) > +{ > + struct qed_dcbx_get *dcbx_info; > + int rc; > + > + if (pri >= QED_MAX_PFC_PRIORITIES) { > + DP_ERR(p_hwfn, "Invalid priority %d\n", pri); > + return -EINVAL; > + } > + > + dcbx_info = kzalloc(sizeof(*dcbx_info), GFP_KERNEL); > + if (!dcbx_info) > + return -ENOMEM; > + > + rc = qed_dcbx_query_params(p_hwfn, dcbx_info, > + QED_DCBX_OPERATIONAL_MIB); All the layering to probe these values is kinda crazy. You go through all of the layers of the qed DCB code, capture all of the DCBX operational state (it's a lot, it's not trivial, and there is a ton of code that runs to place it into this qed_dcbx_get structure). Then you pick out _1_ value and throw the rest of it away. This is kind of rediculious. After the values have been fetched, they sit in known qed driver data structures in known locations. There is therefore no reason to allocate memory for this large structure. Just provide an API in the DCBX code that 1) Makes sure the info fetch has occurred and the software state is up to date and 2) returns just the value you are looking for. All of this indirection and extra work makes no sense at all.