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] [day] [month] [year] [list]
Date:   Mon, 29 Jul 2019 17:56:10 +0200
From:   Hans de Goede <hdegoede@...hat.com>
To:     Hariprasad Kelam <hariprasad.kelam@...il.com>,
        Greg Kroah-Hartman <gregkh@...uxfoundation.org>,
        Shobhit Kukreti <shobhitkukreti@...il.com>,
        Madhumitha Prabakaran <madhumithabiw@...il.com>,
        devel@...verdev.osuosl.org, linux-kernel@...r.kernel.org,
        Larry.Finger@...inger.net
Subject: Re: [PATCH] staging: rtl8723bs: os_dep: Move common code to func

Hi,

On 25-07-19 20:31, Hariprasad Kelam wrote:
> Inthis file all functions has below common functionality
> 1.Check flag padapter->bSurpriseRemoved
> 2.Get sdio_func structure from intf_hdl.
> 
> This patch introduces two new APIs
> rtw_isadapter_removed,rtw_sdio_get_func which helps to do above common
> functionality.
> 
> Signed-off-by: Hariprasad Kelam <hariprasad.kelam@...il.com>

Looks good to me:

Reviewed-by: Hans de Goede <hdegoede@...hat.com>

Regards,

Hans


> ---
>   drivers/staging/rtl8723bs/os_dep/sdio_ops_linux.c | 149 ++++++----------------
>   1 file changed, 41 insertions(+), 108 deletions(-)
> 
> diff --git a/drivers/staging/rtl8723bs/os_dep/sdio_ops_linux.c b/drivers/staging/rtl8723bs/os_dep/sdio_ops_linux.c
> index 50b8934..126429e 100644
> --- a/drivers/staging/rtl8723bs/os_dep/sdio_ops_linux.c
> +++ b/drivers/staging/rtl8723bs/os_dep/sdio_ops_linux.c
> @@ -26,26 +26,38 @@ inline void rtw_sdio_set_irq_thd(struct dvobj_priv *dvobj, void *thd_hdl)
>   	sdio_data->sys_sdio_irq_thd = thd_hdl;
>   }
>   
> -u8 sd_f0_read8(struct intf_hdl *pintfhdl, u32 addr, s32 *err)
> +static s32 rtw_isadapter_removed(struct intf_hdl *pintfhdl)
>   {
>   	struct adapter *padapter;
> +
> +	padapter = pintfhdl->padapter;
> +	return padapter->bSurpriseRemoved;
> +}
> +
> +static struct sdio_func *rtw_sdio_get_func(struct intf_hdl *pintfhdl)
> +{
>   	struct dvobj_priv *psdiodev;
>   	struct sdio_data *psdio;
>   
> +	psdiodev = pintfhdl->pintf_dev;
> +	psdio = &psdiodev->intf_data;
> +
> +	return psdio->func;
> +}
> +
> +u8 sd_f0_read8(struct intf_hdl *pintfhdl, u32 addr, s32 *err)
> +{
>   	u8 v = 0;
>   	struct sdio_func *func;
>   	bool claim_needed;
>   
> -	padapter = pintfhdl->padapter;
> -	psdiodev = pintfhdl->pintf_dev;
> -	psdio = &psdiodev->intf_data;
>   
> -	if (padapter->bSurpriseRemoved) {
> +	if (rtw_isadapter_removed(pintfhdl)) {
>   		/* DBG_871X(" %s (padapter->bSurpriseRemoved ||adapter->pwrctrlpriv.pnp_bstop_trx)!!!\n", __func__); */
>   		return v;
>   	}
>   
> -	func = psdio->func;
> +	func = rtw_sdio_get_func(pintfhdl);
>   	claim_needed = rtw_sdio_claim_host_needed(func);
>   
>   	if (claim_needed)
> @@ -65,23 +77,15 @@ u8 sd_f0_read8(struct intf_hdl *pintfhdl, u32 addr, s32 *err)
>    */
>   s32 _sd_cmd52_read(struct intf_hdl *pintfhdl, u32 addr, u32 cnt, u8 *pdata)
>   {
> -	struct adapter *padapter;
> -	struct dvobj_priv *psdiodev;
> -	struct sdio_data *psdio;
> -
>   	int err = 0, i;
>   	struct sdio_func *func;
>   
> -	padapter = pintfhdl->padapter;
> -	psdiodev = pintfhdl->pintf_dev;
> -	psdio = &psdiodev->intf_data;
> -
> -	if (padapter->bSurpriseRemoved) {
> +	if (rtw_isadapter_removed(pintfhdl)) {
>   		/* DBG_871X(" %s (padapter->bSurpriseRemoved ||adapter->pwrctrlpriv.pnp_bstop_trx)!!!\n", __func__); */
>   		return err;
>   	}
>   
> -	func = psdio->func;
> +	func = rtw_sdio_get_func(pintfhdl);
>   
>   	for (i = 0; i < cnt; i++) {
>   		pdata[i] = sdio_readb(func, addr+i, &err);
> @@ -100,24 +104,16 @@ s32 _sd_cmd52_read(struct intf_hdl *pintfhdl, u32 addr, u32 cnt, u8 *pdata)
>    */
>   s32 sd_cmd52_read(struct intf_hdl *pintfhdl, u32 addr, u32 cnt, u8 *pdata)
>   {
> -	struct adapter *padapter;
> -	struct dvobj_priv *psdiodev;
> -	struct sdio_data *psdio;
> -
>   	int err = 0;
>   	struct sdio_func *func;
>   	bool claim_needed;
>   
> -	padapter = pintfhdl->padapter;
> -	psdiodev = pintfhdl->pintf_dev;
> -	psdio = &psdiodev->intf_data;
> -
> -	if (padapter->bSurpriseRemoved) {
> +	if (rtw_isadapter_removed(pintfhdl)) {
>   		/* DBG_871X(" %s (padapter->bSurpriseRemoved ||adapter->pwrctrlpriv.pnp_bstop_trx)!!!\n", __func__); */
>   		return err;
>   	}
>   
> -	func = psdio->func;
> +	func = rtw_sdio_get_func(pintfhdl);
>   	claim_needed = rtw_sdio_claim_host_needed(func);
>   
>   	if (claim_needed)
> @@ -135,23 +131,15 @@ s32 sd_cmd52_read(struct intf_hdl *pintfhdl, u32 addr, u32 cnt, u8 *pdata)
>    */
>   s32 _sd_cmd52_write(struct intf_hdl *pintfhdl, u32 addr, u32 cnt, u8 *pdata)
>   {
> -	struct adapter *padapter;
> -	struct dvobj_priv *psdiodev;
> -	struct sdio_data *psdio;
> -
>   	int err = 0, i;
>   	struct sdio_func *func;
>   
> -	padapter = pintfhdl->padapter;
> -	psdiodev = pintfhdl->pintf_dev;
> -	psdio = &psdiodev->intf_data;
> -
> -	if (padapter->bSurpriseRemoved) {
> +	if (rtw_isadapter_removed(pintfhdl)) {
>   		/* DBG_871X(" %s (padapter->bSurpriseRemoved ||adapter->pwrctrlpriv.pnp_bstop_trx)!!!\n", __func__); */
>   		return err;
>   	}
>   
> -	func = psdio->func;
> +	func = rtw_sdio_get_func(pintfhdl);
>   
>   	for (i = 0; i < cnt; i++) {
>   		sdio_writeb(func, pdata[i], addr+i, &err);
> @@ -170,24 +158,16 @@ s32 _sd_cmd52_write(struct intf_hdl *pintfhdl, u32 addr, u32 cnt, u8 *pdata)
>    */
>   s32 sd_cmd52_write(struct intf_hdl *pintfhdl, u32 addr, u32 cnt, u8 *pdata)
>   {
> -	struct adapter *padapter;
> -	struct dvobj_priv *psdiodev;
> -	struct sdio_data *psdio;
> -
>   	int err = 0;
>   	struct sdio_func *func;
>   	bool claim_needed;
>   
> -	padapter = pintfhdl->padapter;
> -	psdiodev = pintfhdl->pintf_dev;
> -	psdio = &psdiodev->intf_data;
> -
> -	if (padapter->bSurpriseRemoved) {
> +	if (rtw_isadapter_removed(pintfhdl)) {
>   		/* DBG_871X(" %s (padapter->bSurpriseRemoved ||adapter->pwrctrlpriv.pnp_bstop_trx)!!!\n", __func__); */
>   		return err;
>   	}
>   
> -	func = psdio->func;
> +	func = rtw_sdio_get_func(pintfhdl);
>   	claim_needed = rtw_sdio_claim_host_needed(func);
>   
>   	if (claim_needed)
> @@ -200,24 +180,16 @@ s32 sd_cmd52_write(struct intf_hdl *pintfhdl, u32 addr, u32 cnt, u8 *pdata)
>   
>   u8 sd_read8(struct intf_hdl *pintfhdl, u32 addr, s32 *err)
>   {
> -	struct adapter *padapter;
> -	struct dvobj_priv *psdiodev;
> -	struct sdio_data *psdio;
> -
>   	u8 v = 0;
>   	struct sdio_func *func;
>   	bool claim_needed;
>   
> -	padapter = pintfhdl->padapter;
> -	psdiodev = pintfhdl->pintf_dev;
> -	psdio = &psdiodev->intf_data;
> -
> -	if (padapter->bSurpriseRemoved) {
> +	if (rtw_isadapter_removed(pintfhdl)) {
>   		/* DBG_871X(" %s (padapter->bSurpriseRemoved ||adapter->pwrctrlpriv.pnp_bstop_trx)!!!\n", __func__); */
>   		return v;
>   	}
>   
> -	func = psdio->func;
> +	func = rtw_sdio_get_func(pintfhdl);
>   	claim_needed = rtw_sdio_claim_host_needed(func);
>   
>   	if (claim_needed)
> @@ -234,21 +206,19 @@ u32 sd_read32(struct intf_hdl *pintfhdl, u32 addr, s32 *err)
>   {
>   	struct adapter *padapter;
>   	struct dvobj_priv *psdiodev;
> -	struct sdio_data *psdio;
>   	u32 v = 0;
>   	struct sdio_func *func;
>   	bool claim_needed;
>   
>   	padapter = pintfhdl->padapter;
>   	psdiodev = pintfhdl->pintf_dev;
> -	psdio = &psdiodev->intf_data;
>   
>   	if (padapter->bSurpriseRemoved) {
>   		/* DBG_871X(" %s (padapter->bSurpriseRemoved ||adapter->pwrctrlpriv.pnp_bstop_trx)!!!\n", __func__); */
>   		return v;
>   	}
>   
> -	func = psdio->func;
> +	func = rtw_sdio_get_func(pintfhdl);
>   	claim_needed = rtw_sdio_claim_host_needed(func);
>   
>   	if (claim_needed)
> @@ -295,22 +265,15 @@ u32 sd_read32(struct intf_hdl *pintfhdl, u32 addr, s32 *err)
>   
>   void sd_write8(struct intf_hdl *pintfhdl, u32 addr, u8 v, s32 *err)
>   {
> -	struct adapter *padapter;
> -	struct dvobj_priv *psdiodev;
> -	struct sdio_data *psdio;
>   	struct sdio_func *func;
>   	bool claim_needed;
>   
> -	padapter = pintfhdl->padapter;
> -	psdiodev = pintfhdl->pintf_dev;
> -	psdio = &psdiodev->intf_data;
> -
> -	if (padapter->bSurpriseRemoved) {
> +	if (rtw_isadapter_removed(pintfhdl)) {
>   		/* DBG_871X(" %s (padapter->bSurpriseRemoved ||adapter->pwrctrlpriv.pnp_bstop_trx)!!!\n", __func__); */
>   		return;
>   	}
>   
> -	func = psdio->func;
> +	func = rtw_sdio_get_func(pintfhdl);
>   	claim_needed = rtw_sdio_claim_host_needed(func);
>   
>   	if (claim_needed)
> @@ -326,20 +289,18 @@ void sd_write32(struct intf_hdl *pintfhdl, u32 addr, u32 v, s32 *err)
>   {
>   	struct adapter *padapter;
>   	struct dvobj_priv *psdiodev;
> -	struct sdio_data *psdio;
>   	struct sdio_func *func;
>   	bool claim_needed;
>   
>   	padapter = pintfhdl->padapter;
>   	psdiodev = pintfhdl->pintf_dev;
> -	psdio = &psdiodev->intf_data;
>   
>   	if (padapter->bSurpriseRemoved) {
>   		/* DBG_871X(" %s (padapter->bSurpriseRemoved ||adapter->pwrctrlpriv.pnp_bstop_trx)!!!\n", __func__); */
>   		return;
>   	}
>   
> -	func = psdio->func;
> +	func = rtw_sdio_get_func(pintfhdl);
>   	claim_needed = rtw_sdio_claim_host_needed(func);
>   
>   	if (claim_needed)
> @@ -398,23 +359,15 @@ void sd_write32(struct intf_hdl *pintfhdl, u32 addr, u32 v, s32 *err)
>    */
>   s32 _sd_read(struct intf_hdl *pintfhdl, u32 addr, u32 cnt, void *pdata)
>   {
> -	struct adapter *padapter;
> -	struct dvobj_priv *psdiodev;
> -	struct sdio_data *psdio;
> -
>   	int err = -EPERM;
>   	struct sdio_func *func;
>   
> -	padapter = pintfhdl->padapter;
> -	psdiodev = pintfhdl->pintf_dev;
> -	psdio = &psdiodev->intf_data;
> -
> -	if (padapter->bSurpriseRemoved) {
> +	if (rtw_isadapter_removed(pintfhdl)) {
>   		/* DBG_871X(" %s (padapter->bSurpriseRemoved ||adapter->pwrctrlpriv.pnp_bstop_trx)!!!\n", __func__); */
>   		return err;
>   	}
>   
> -	func = psdio->func;
> +	func = rtw_sdio_get_func(pintfhdl);
>   
>   	if (unlikely((cnt == 1) || (cnt == 2))) {
>   		int i;
> @@ -453,23 +406,18 @@ s32 _sd_read(struct intf_hdl *pintfhdl, u32 addr, u32 cnt, void *pdata)
>    */
>   s32 sd_read(struct intf_hdl *pintfhdl, u32 addr, u32 cnt, void *pdata)
>   {
> -	struct adapter *padapter;
> -	struct dvobj_priv *psdiodev;
> -	struct sdio_data *psdio;
>   
>   	struct sdio_func *func;
>   	bool claim_needed;
>   	s32 err = -EPERM;
>   
> -	padapter = pintfhdl->padapter;
> -	psdiodev = pintfhdl->pintf_dev;
> -	psdio = &psdiodev->intf_data;
>   
> -	if (padapter->bSurpriseRemoved) {
> +	if (rtw_isadapter_removed(pintfhdl)) {
>   		/* DBG_871X(" %s (padapter->bSurpriseRemoved ||adapter->pwrctrlpriv.pnp_bstop_trx)!!!\n", __func__); */
>   		return err;
>   	}
> -	func = psdio->func;
> +
> +	func = rtw_sdio_get_func(pintfhdl);
>   	claim_needed = rtw_sdio_claim_host_needed(func);
>   
>   	if (claim_needed)
> @@ -497,24 +445,16 @@ s32 sd_read(struct intf_hdl *pintfhdl, u32 addr, u32 cnt, void *pdata)
>    */
>   s32 _sd_write(struct intf_hdl *pintfhdl, u32 addr, u32 cnt, void *pdata)
>   {
> -	struct adapter *padapter;
> -	struct dvobj_priv *psdiodev;
> -	struct sdio_data *psdio;
> -
>   	struct sdio_func *func;
>   	u32 size;
>   	s32 err =  -EPERM;
>   
> -	padapter = pintfhdl->padapter;
> -	psdiodev = pintfhdl->pintf_dev;
> -	psdio = &psdiodev->intf_data;
> -
> -	if (padapter->bSurpriseRemoved) {
> +	if (rtw_isadapter_removed(pintfhdl)) {
>   		/* DBG_871X(" %s (padapter->bSurpriseRemoved ||adapter->pwrctrlpriv.pnp_bstop_trx)!!!\n", __func__); */
>   		return err;
>   	}
>   
> -	func = psdio->func;
> +	func = rtw_sdio_get_func(pintfhdl);
>   /*	size = sdio_align_size(func, cnt); */
>   
>   	if (unlikely((cnt == 1) || (cnt == 2))) {
> @@ -555,23 +495,16 @@ s32 _sd_write(struct intf_hdl *pintfhdl, u32 addr, u32 cnt, void *pdata)
>    */
>   s32 sd_write(struct intf_hdl *pintfhdl, u32 addr, u32 cnt, void *pdata)
>   {
> -	struct adapter *padapter;
> -	struct dvobj_priv *psdiodev;
> -	struct sdio_data *psdio;
>   	struct sdio_func *func;
>   	bool claim_needed;
>   	s32 err =  -EPERM;
>   
> -	padapter = pintfhdl->padapter;
> -	psdiodev = pintfhdl->pintf_dev;
> -	psdio = &psdiodev->intf_data;
> -
> -	if (padapter->bSurpriseRemoved) {
> +	if (rtw_isadapter_removed(pintfhdl)) {
>   		/* DBG_871X(" %s (padapter->bSurpriseRemoved ||adapter->pwrctrlpriv.pnp_bstop_trx)!!!\n", __func__); */
>   		return err;
>   	}
>   
> -	func = psdio->func;
> +	func = rtw_sdio_get_func(pintfhdl);
>   	claim_needed = rtw_sdio_claim_host_needed(func);
>   
>   	if (claim_needed)
> 

Powered by blists - more mailing lists