Re: [PATCH v4 01/23] iidc: Introduce iidc.h

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



On Tue, Apr 06, 2021 at 04:01:03PM -0500, Shiraz Saleem wrote:

> +struct iidc_res_base {
> +	/* Union for future provision e.g. other res_type */
> +	union {
> +		struct iidc_rdma_qset_params qsets;
> +	} res;

Use an anonymous union?

There is alot of confusiong provisioning for future types, do you have
concrete plans here? I'm a bit confused why this is so different from
how mlx5 ended up when it already has multiple types.

> +};
> +
> +struct iidc_res {
> +	/* Type of resource. */
> +	enum iidc_res_type res_type;
> +	/* Count requested */
> +	u16 cnt_req;
> +
> +	/* Number of resources allocated. Filled in by callee.
> +	 * Based on this value, caller to fill up "resources"
> +	 */
> +	u16 res_allocated;
> +
> +	/* Unique handle to resources allocated. Zero if call fails.
> +	 * Allocated by callee and for now used by caller for internal
> +	 * tracking purpose.
> +	 */
> +	u32 res_handle;
> +
> +	/* Peer driver has to allocate sufficient memory, to accommodate
> +	 * cnt_requested before calling this function.

Calling what function?

> +	 * Memory has to be zero initialized. It is input/output param.
> +	 * As a result of alloc_res API, this structures will be populated.
> +	 */
> +	struct iidc_res_base res[1];

So it is a wrongly defined flex array? Confused

The usages are all using this as some super-complicated function argument:

	struct iidc_res rdma_qset_res = {};

	rdma_qset_res.res_allocated = 1;
	rdma_qset_res.res_type = IIDC_RDMA_QSETS_TXSCHED;
	rdma_qset_res.res[0].res.qsets.vport_id = vsi->vsi_idx;
	rdma_qset_res.res[0].res.qsets.teid = tc_node->l2_sched_node_id;
	rdma_qset_res.res[0].res.qsets.qs_handle = tc_node->qs_handle;

	if (cdev_info->ops->free_res(cdev_info, &rdma_qset_res))

So the answer here is to make your function calls sane and well
architected. If you have to pass a union to call a function then
something is very wrong with the design.

You aren't trying to achieve ABI decoupling of the rdma/ethernet
modules with an obfuscated complicated function pointer indirection,
are you?

Please use sane function calls 

> +/* Following APIs are implemented by auxiliary drivers and invoked by core PCI
> + * driver
> + */
> +struct iidc_auxiliary_ops {
> +	/* This event_handler is meant to be a blocking call.  For instance,
> +	 * when a BEFORE_MTU_CHANGE event comes in, the event_handler will not
> +	 * return until the auxiliary driver is ready for the MTU change to
> +	 * happen.
> +	 */
> +	void (*event_handler)(struct iidc_core_dev_info *cdev_info,
> +			      struct iidc_event *event);
> +
> +	int (*vc_receive)(struct iidc_core_dev_info *cdev_info, u32 vf_id,
> +			  u8 *msg, u16 len);
> +};

This is not the normal pattern:

> +struct iidc_auxiliary_drv {
> +	struct auxiliary_driver adrv;
> +	struct iidc_auxiliary_ops *ops;
> +};

Just put the two functions above in the drv directly:

struct iidc_auxiliary_drv {
        struct auxilary_driver adrv;
	void (*event_handler)(struct iidc_core_dev_info *cdev_info, *cdev_info,
			      struct iidc_event *event);

	int (*vc_receive)(struct iidc_core_dev_info *cdev_info, u32 vf_id,
			  u8 *msg, u16 len);
}

> +
> +#define IIDC_RDMA_NAME	"intel_rdma"
> +#define IIDC_RDMA_ID	0x00000010
> +#define IIDC_MAX_NUM_AUX	4
> +
> +/* The const struct that instantiates cdev_info_id needs to be initialized
> + * in the .c with the macro ASSIGN_IIDC_INFO.
> + * For example:
> + * static const struct cdev_info_id cdev_info_ids[] = ASSIGN_IIDC_INFO;
> + */
> +struct cdev_info_id {
> +	char *name;
> +	int id;
> +};
> +
> +#define IIDC_RDMA_INFO   { .name = IIDC_RDMA_NAME,  .id = IIDC_RDMA_ID },
> +
> +#define ASSIGN_IIDC_INFO	\
> +{				\
> +	IIDC_RDMA_INFO		\
> +}

I tried to figure out what all this was for and came up short. There
is only one user and all this seems unnecessary in this series, add it
later when you need it.

> +
> +#define iidc_priv(x) ((x)->auxiliary_priv)

Use a static inline function

Jason



[Index of Archives]     [Linux USB Devel]     [Video for Linux]     [Linux Audio Users]     [Photo]     [Yosemite News]     [Yosemite Photos]     [Linux Kernel]     [Linux SCSI]     [XFree86]

  Powered by Linux