Skip to content
Snippets Groups Projects
Select Git revision
  • pkt-ptr-revert-v1
  • bpf-spectre default protected
  • vf-baseline
  • bpf-spectre-baseline
  • v6.5-rc6-bpf-spectre-nospec
  • master
  • spectector-bpf
  • bpftask protected
  • bpftask-no-unused-args
  • bpftask-master
  • v5.9-bpftask
  • v5.8-amd-17h-em protected
  • v5.8-amd-17h-eas protected
  • freqinv-amd3950x-v5.8
  • v5.8-scale-inv-acc-amd-ryzen-3950x
  • 23186e43-amd-17h-eas protected
  • caffb99b6929-perf-x86-rapl-Enable-RAPL-for-AMD-Fam17h
  • 6a9ee74800a1-amd-17h-eas protected
  • add2fae34926-amd_17h_em
  • 3643c88e5545-Add-support-for-frequency-invariance-for-some-x86
  • v5.7-rc6
21 results

compress.h

Blame
  • compress.h 724 B
    /* SPDX-License-Identifier: GPL-2.0-or-later */
    /*
     * Cryptographic API.
     *
     * Copyright 2015 LG Electronics Inc.
     * Copyright (c) 2016, Intel Corporation
     * Copyright (c) 2023 Herbert Xu <herbert@gondor.apana.org.au>
     */
    #ifndef _LOCAL_CRYPTO_COMPRESS_H
    #define _LOCAL_CRYPTO_COMPRESS_H
    
    #include "internal.h"
    
    struct acomp_req;
    struct comp_alg_common;
    struct sk_buff;
    
    int crypto_init_scomp_ops_async(struct crypto_tfm *tfm);
    struct acomp_req *crypto_acomp_scomp_alloc_ctx(struct acomp_req *req);
    void crypto_acomp_scomp_free_ctx(struct acomp_req *req);
    
    int crypto_acomp_report_stat(struct sk_buff *skb, struct crypto_alg *alg);
    
    void comp_prepare_alg(struct comp_alg_common *alg);
    
    #endif	/* _LOCAL_CRYPTO_COMPRESS_H */