hc
2023-11-06 15ade055295d13f95d49e3d99b09f3bbfb4a43e7
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
/* SPDX-License-Identifier: GPL-2.0
 * Tracepoints for vfio_ccw driver
 *
 * Copyright IBM Corp. 2018
 *
 * Author(s): Dong Jia Shi <bjsdjshi@linux.vnet.ibm.com>
 *            Halil Pasic <pasic@linux.vnet.ibm.com>
 */
 
#undef TRACE_SYSTEM
#define TRACE_SYSTEM vfio_ccw
 
#if !defined(_VFIO_CCW_TRACE_) || defined(TRACE_HEADER_MULTI_READ)
#define _VFIO_CCW_TRACE_
 
#include <linux/tracepoint.h>
 
TRACE_EVENT(vfio_ccw_io_fctl,
   TP_PROTO(int fctl, struct subchannel_id schid, int errno, char *errstr),
   TP_ARGS(fctl, schid, errno, errstr),
 
   TP_STRUCT__entry(
       __field(int, fctl)
       __field_struct(struct subchannel_id, schid)
       __field(int, errno)
       __field(char*, errstr)
   ),
 
   TP_fast_assign(
       __entry->fctl = fctl;
       __entry->schid = schid;
       __entry->errno = errno;
       __entry->errstr = errstr;
   ),
 
   TP_printk("schid=%x.%x.%04x fctl=%x errno=%d info=%s",
         __entry->schid.cssid,
         __entry->schid.ssid,
         __entry->schid.sch_no,
         __entry->fctl,
         __entry->errno,
         __entry->errstr)
);
 
#endif /* _VFIO_CCW_TRACE_ */
 
/* This part must be outside protection */
 
#undef TRACE_INCLUDE_PATH
#define TRACE_INCLUDE_PATH .
#undef TRACE_INCLUDE_FILE
#define TRACE_INCLUDE_FILE vfio_ccw_trace
 
#include <trace/define_trace.h>