Add and use tracepoints in Request. Requests are core to libcamera operation, thus detecting delays in their processing is important, and serves as a good usage example of tracepoints. Signed-off-by: Paul Elder <paul.elder@ideasonboard.com> Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
10 lines
175 B
Plaintext
10 lines
175 B
Plaintext
TRACEPOINT_ENUM(
|
|
libcamera,
|
|
buffer_status,
|
|
TP_ENUM_VALUES(
|
|
ctf_enum_value("FrameSuccess", 0)
|
|
ctf_enum_value("FrameError", 1)
|
|
ctf_enum_value("FrameCancelled", 2)
|
|
)
|
|
)
|