lkml.org 
[lkml]   [2009]   [Jan]   [14]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
Date
SubjectRe: [PATCH] crypto: compress - Add pcomp interface
From
On Tue, Jan 13, 2009 at 9:29 PM, Geert Uytterhoeven
<Geert.Uytterhoeven@sonycom.com> wrote:
> +static inline struct pcomp_alg *crypto_pcomp_alg(struct crypto_pcomp *tfm)
> +{
> + return __crypto_pcomp_alg(crypto_pcomp_tfm(tfm)->__crt_alg);
> +}
> +
> +static inline int crypto_pcomp_setup(struct crypto_pcomp *tfm,
> + const void *params)
> +{
> + return crypto_pcomp_alg(tfm)->setup(crypto_pcomp_tfm(tfm), params);
> +}
> +
> +static inline int crypto_pcomp_compress_init(struct crypto_pcomp *tfm)
> +{
> + return crypto_pcomp_alg(tfm)->compress_init(crypto_pcomp_tfm(tfm));
> +}
> +
> +static inline int crypto_pcomp_compress_update(struct crypto_pcomp *tfm,
> + struct comp_request *req)
> +{
> + return crypto_pcomp_alg(tfm)->compress_update(crypto_pcomp_tfm(tfm),
> + req);
> +}
> +
> +static inline int crypto_pcomp_compress_final(struct crypto_pcomp *tfm,
> + struct comp_request *req)
> +{
> + return crypto_pcomp_alg(tfm)->compress_final(crypto_pcomp_tfm(tfm),
> + req);
> +}
> +
> +static inline int crypto_pcomp_decompress_init(struct crypto_pcomp *tfm)
> +{
> + return crypto_pcomp_alg(tfm)->decompress_init(crypto_pcomp_tfm(tfm));
> +}
> +
> +static inline int crypto_pcomp_decompress_update(struct crypto_pcomp *tfm,
> + struct comp_request *req)
> +{
> + return crypto_pcomp_alg(tfm)->decompress_update(crypto_pcomp_tfm(tfm),
> + req);
> +}
> +
> +static inline int crypto_pcomp_decompress_final(struct crypto_pcomp *tfm,
> + struct comp_request *req)
> +{
> + return crypto_pcomp_alg(tfm)->decompress_final(crypto_pcomp_tfm(tfm),
> + req);
> +}

Can you please use expressive but short names ?

Thanks

--
JSR


\
 
 \ /
  Last update: 2009-01-14 17:49    [W:0.081 / U:1.700 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site