Lines Matching refs:val
16 static int hv_debugfs_delay_get(void *data, u64 *val)
18 *val = *(u32 *)data;
22 static int hv_debugfs_delay_set(void *data, u64 val)
24 if (val > 1000)
26 *(u32 *)data = val;
33 static int hv_debugfs_state_get(void *data, u64 *val)
35 *val = *(bool *)data;
39 static int hv_debugfs_state_set(void *data, u64 val)
41 if (val == 1)
43 else if (val == 0)