lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20210125192319.GW4147@nvidia.com>
Date:   Mon, 25 Jan 2021 15:23:19 -0400
From:   Jason Gunthorpe <jgg@...dia.com>
To:     Shiraz Saleem <shiraz.saleem@...el.com>
CC:     <dledford@...hat.com>, <kuba@...nel.org>, <davem@...emloft.net>,
        <linux-rdma@...r.kernel.org>, <gregkh@...uxfoundation.org>,
        <netdev@...r.kernel.org>, <david.m.ertman@...el.com>,
        <anthony.l.nguyen@...el.com>,
        Mustafa Ismail <mustafa.ismail@...el.com>
Subject: Re: [PATCH 09/22] RDMA/irdma: Implement HW Admin Queue OPs

On Fri, Jan 22, 2021 at 05:48:14PM -0600, Shiraz Saleem wrote:
> +#define LS_64_1(val, bits)	((u64)(uintptr_t)(val) << (bits))
> +#define RS_64_1(val, bits)	((u64)(uintptr_t)(val) >> (bits))
> +#define LS_32_1(val, bits)	((u32)((val) << (bits)))
> +#define RS_32_1(val, bits)	((u32)((val) >> (bits)))
> +#define LS_64(val, field)	(((u64)(val) << field ## _S) & (field ## _M))
> +#define RS_64(val, field)	((u64)((val) & field ## _M) >> field ## _S)
> +#define LS_32(val, field)	(((val) << field ## _S) & (field ## _M))
> +#define RS_32(val, field)	(((val) & field ## _M) >> field ## _S)

Yikes, why can't this use the normal GENMASK/FIELD_PREP infrastructure
like the other new drivers are now doing?

EFA is not a perfect example, but EFA_GET/EFA_SET are the macros I
would expect to see, just without the _MASK thing.

IBA_GET/SET shows how to do that pattern

> +#define FLD_LS_64(dev, val, field)	\
> +	(((u64)(val) << (dev)->hw_shifts[field ## _S]) & (dev)->hw_masks[field ## _M])
> +#define FLD_RS_64(dev, val, field)	\
> +	((u64)((val) & (dev)->hw_masks[field ## _M]) >> (dev)->hw_shifts[field ## _S])
> +#define FLD_LS_32(dev, val, field)	\
> +	(((val) << (dev)->hw_shifts[field ## _S]) & (dev)->hw_masks[field ## _M])
> +#define FLD_RS_32(dev, val, field)	\
> +	((u64)((val) & (dev)->hw_masks[field ## _M]) >> (dev)->hw_shifts[field ## _S])

Is it because the register access is programmable? That shouldn't be a
significant problem.

> +#define IRDMA_CQPSQ_QHASH_QS_HANDLE_S 0
> +#define IRDMA_CQPSQ_QHASH_QS_HANDLE_M ((u64)0x3ff << IRDMA_CQPSQ_QHASH_QS_HANDLE_S)

All of this is particularly painful

A bit of time with coccinelle would probably fix all of this

Jason

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ