Branch data Line data Source code
1 : : #include "defs.h"
2 : :
3 : : static void
4 : 10 : decode_renameat(struct tcb *tcp)
5 : : {
6 : 10 : print_dirfd(tcp, tcp->u_arg[0]);
7 : 10 : printpath(tcp, tcp->u_arg[1]);
8 : 10 : tprints(", ");
9 : 10 : print_dirfd(tcp, tcp->u_arg[2]);
10 : 10 : printpath(tcp, tcp->u_arg[3]);
11 : 10 : }
12 : :
13 : 5 : SYS_FUNC(renameat)
14 : : {
15 : 5 : decode_renameat(tcp);
16 : :
17 : 5 : return RVAL_DECODED;
18 : : }
19 : :
20 : : #include <linux/fs.h>
21 : : #include "xlat/rename_flags.h"
22 : :
23 : 5 : SYS_FUNC(renameat2)
24 : : {
25 : 5 : decode_renameat(tcp);
26 : 5 : tprints(", ");
27 : 5 : printflags(rename_flags, tcp->u_arg[4], "RENAME_??");
28 : :
29 : 5 : return RVAL_DECODED;
30 : : }
|