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]
Date:   Mon, 10 Sep 2018 15:11:48 -0500
From:   Li Yang <leoyang.li@....com>
To:     Horia Geanta <horia.geanta@....com>
Cc:     Herbert Xu <herbert@...dor.apana.org.au>,
        Stuart Yoder <stuyoder@...il.com>,
        Laurentiu Tudor <laurentiu.tudor@....com>,
        Roy Pledge <roy.pledge@....com>,
        Catalin Marinas <catalin.marinas@....com>,
        Will Deacon <will.deacon@....com>,
        David Miller <davem@...emloft.net>, aymen.sghaier@....com,
        linux-crypto@...r.kernel.org,
        "moderated list:ARM/FREESCALE IMX / MXC ARM ARCHITECTURE" 
        <linux-arm-kernel@...ts.infradead.org>,
        lkml <linux-kernel@...r.kernel.org>
Subject: Re: [PATCH 04/11] soc: fsl: dpio: add congestion notification support

On Mon, Sep 10, 2018 at 12:19 PM Horia Geantă <horia.geanta@....com> wrote:
>
> Add support for Congestion State Change Notifications (CSCN), which
> allow DPIO users to be notified when a congestion group changes its
> state (due to hitting the entrance / exit threshold).
>
> Signed-off-by: Horia Geantă <horia.geanta@....com>

Acked-by: Li Yang <leoyang.li@....com>
> ---
>  include/soc/fsl/dpaa2-global.h | 15 +++++++++++++++
>  1 file changed, 15 insertions(+)
>
> diff --git a/include/soc/fsl/dpaa2-global.h b/include/soc/fsl/dpaa2-global.h
> index 9bc0713346a8..2bfc379d3dc9 100644
> --- a/include/soc/fsl/dpaa2-global.h
> +++ b/include/soc/fsl/dpaa2-global.h
> @@ -174,4 +174,19 @@ static inline const struct dpaa2_fd *dpaa2_dq_fd(const struct dpaa2_dq *dq)
>         return (const struct dpaa2_fd *)&dq->dq.fd[0];
>  }
>
> +#define DPAA2_CSCN_SIZE                sizeof(struct dpaa2_dq)
> +#define DPAA2_CSCN_ALIGN       16
> +#define DPAA2_CSCN_STATE_CG    BIT(0)
> +
> +/**
> + * dpaa2_cscn_state_congested() - Check congestion state
> + * @cscn: congestion SCN (delivered to WQ or memory)
> + *
> +i * Return true is congested.
> + */
> +static inline bool dpaa2_cscn_state_congested(struct dpaa2_dq *cscn)
> +{
> +       return !!(cscn->scn.state & DPAA2_CSCN_STATE_CG);
> +}
> +
>  #endif /* __FSL_DPAA2_GLOBAL_H */
> --
> 2.16.2
>

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ