cachepc-linux

Fork of AMDESE/linux with modifications for CachePC side-channel attack
git clone https://git.sinitax.com/sinitax/cachepc-linux
Log | Files | Refs | README | LICENSE | sfeed.txt

block.h (457B)


      1/* SPDX-License-Identifier: GPL-2.0 */
      2#ifndef _MMC_CORE_BLOCK_H
      3#define _MMC_CORE_BLOCK_H
      4
      5struct mmc_queue;
      6struct request;
      7
      8void mmc_blk_cqe_recovery(struct mmc_queue *mq);
      9
     10enum mmc_issued;
     11
     12enum mmc_issued mmc_blk_mq_issue_rq(struct mmc_queue *mq, struct request *req);
     13void mmc_blk_mq_complete(struct request *req);
     14void mmc_blk_mq_recovery(struct mmc_queue *mq);
     15
     16struct work_struct;
     17
     18void mmc_blk_mq_complete_work(struct work_struct *work);
     19
     20#endif