blob: c5bf3dc0a2108ebb4ce9ab30fad4628d8a75d2b3 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#ifndef __LITMUS_NVIDIA_H
#define __LITMUS_NVIDIA_H
#include <litmus/litmus_softirq.h>
int init_nvidia_info(void);
int is_nvidia_func(void *func);
int is_nvidia_in_callstack(void);
// Returns the Nvidia device # associated with the
// provided tasklet.
u32 get_nv_device_num(const struct tasklet_struct *t);
#endif
|