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

requestqueue.h (736B)


      1/* SPDX-License-Identifier: GPL-2.0-only */
      2/******************************************************************************
      3*******************************************************************************
      4**
      5**  Copyright (C) 2005-2007 Red Hat, Inc.  All rights reserved.
      6**
      7**
      8*******************************************************************************
      9******************************************************************************/
     10
     11#ifndef __REQUESTQUEUE_DOT_H__
     12#define __REQUESTQUEUE_DOT_H__
     13
     14void dlm_add_requestqueue(struct dlm_ls *ls, int nodeid, struct dlm_message *ms);
     15int dlm_process_requestqueue(struct dlm_ls *ls);
     16void dlm_wait_requestqueue(struct dlm_ls *ls);
     17void dlm_purge_requestqueue(struct dlm_ls *ls);
     18
     19#endif
     20