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

lockdep.h (247B)


      1#ifndef _LINUX_LOCKDEP_H
      2#define _LINUX_LOCKDEP_H
      3
      4#include <linux/spinlock.h>
      5
      6struct lock_class_key {
      7	unsigned int a;
      8};
      9
     10static inline void lockdep_set_class(spinlock_t *lock,
     11					struct lock_class_key *key)
     12{
     13}
     14#endif /* _LINUX_LOCKDEP_H */