【Linux】SYSCALL_DEFINE4 openat执行流程摸索

在上一篇博客,我们基于pr_info这个内核类似c语言printf打印宏完成了打印,基本实现了自由开关打印,可以设定打印日志次数(代码写了,大概10行代码),在测试的时候发现居然还有意外收获,doge....

在前一阵子,本来想摸索内核openat的执行流程,一直不成功,是什么原因呢?这个问题有点奇怪,当时看到的现象就是Ubuntu可以进入到图形模式,但是就是进入不了桌面,一直在那转圈圈。

由于现在我们开发了一个pr_info_self,有了这个小刀,那必须试试这个小刀能不能深入解剖内核这头牛。。。

基于对openat这个系统调用源码的理解,合入了这样些代码:

登录 - Gitee.comhttps://gitee.com/r77683962/linux-6.9.0/commit/8acf470e1b3b093912a984467e96fa78d87c06ac

然后打印的详细日志如下(这个文件1150706行,内核日志量还是比较大的):

登录 - Gitee.comhttps://gitee.com/r77683962/linux-6.9.0/raw/8acf470e1b3b093912a984467e96fa78d87c06ac/test_log/syslog_openat2_detail.txt

从这个日志来看一共调用了1283次__do_sys_openat这个系统调用,注意1532这个行,也是跟日志能对上的。

下边这是刚才搜索到1283次结果的最后记录,这里有一点需要注意:

第一条记录打印的时间:2024-07-17 16:49:15.159705

最后一条记录打印的时间:2024-07-17 16:49:22.733054,就在7.6秒左右的时间内,内核一共调用了1283次openat这个系统调用,而在这两次打印之间的日志行数是:

开始日志行:5311

结束日志行:1150678

相差了114.5万行的样子,就这个角度来看,猜测操作系统是不是因为这个原因崩溃了?

基于linux-6.9.0/commit/8acf470e1b3b093912a984467e96fa78d87c06ac这个合入hash值,打印的openat代码级执行流程日志是这样的:

bash 复制代码
16:49:15.159704: [fs/namei.c putname 262 DEFAULT] name: /run/systemd/journal/flushed
16:49:15.159705: [fs/open.c __do_sys_openat 1532 DEFAULT] count: 656835
16:49:15.159706: [fs/open.c do_sys_openat2 1437 DEFAULT] tmp->name: /etc/machine-id
16:49:15.159707: [fs/file.c alloc_fd 505 DEFAULT] allocate a file descriptor, mark it busy. tgid: 2661, pid: 2661
16:49:15.159709: [fs/namei.c do_filp_open 3841 DEFAULT] pathname: /etc/machine-id
16:49:15.159710: [fs/namei.c path_init 2364 DEFAULT] path_init
16:49:15.159711: [fs/namei.c path_openat 3800 DEFAULT] alloc_empty_file
16:49:15.159712: [fs/namei.c path_lookupat 2486 DEFAULT] path_lookupat
16:49:15.159713: [fs/namei.c link_path_walk 2260 DEFAULT] name: /run/systemd/journal/flushed
16:49:15.159714: [fs/file_table.c alloc_empty_file 192 DEFAULT] alloc_empty_file
16:49:15.159716: [fs/file_table.c init_file 152 DEFAULT] security_file_alloc
16:49:15.159717: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.159718: [fs/namei.c path_init 2364 DEFAULT] path_init
16:49:15.159719: [fs/namei.c link_path_walk 2260 DEFAULT] name: (efault)
16:49:15.159721: [fs/namei.c link_path_walk 2260 DEFAULT] name: /etc/machine-id
16:49:15.159722: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.159723: [fs/namei.c complete_walk 886 DEFAULT] complete_walk
16:49:15.159724: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.159725: [fs/namei.c may_open 3250 DEFAULT] 
16:49:15.159726: [include/linux/fs.h __sb_start_write 1666 DEFAULT] __sb_start_write
16:49:15.159727: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.159729: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.159730: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.159731: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.159733: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.159734: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.159735: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.159737: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.159738: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.159739: [fs/namei.c putname 262 DEFAULT] name: /run/systemd/journal/flushed
16:49:15.159741: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.159742: [fs/file.c fd_install 612 DEFAULT] 
16:49:15.159743: [fs/namei.c putname 262 DEFAULT] name: /etc/machine-id
16:49:15.159744: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.159745: [fs/namei.c path_init 2364 DEFAULT] path_init
16:49:15.159746: [include/linux/fs.h __sb_start_write 1666 DEFAULT] __sb_start_write
16:49:15.159747: [fs/namei.c path_lookupat 2486 DEFAULT] path_lookupat
16:49:15.159749: [fs/namei.c link_path_walk 2260 DEFAULT] name: /run/systemd/journal/flushed
16:49:15.159750: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.159751: [fs/namei.c link_path_walk 2260 DEFAULT] name: (efault)
16:49:15.159752: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.159753: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.159756: message repeated 2 times: [ [fs/dcache.c dput 838 DEFAULT] ]
16:49:15.160031: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.160042: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.160044: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.160045: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.160047: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.160049: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.160050: [fs/namei.c putname 262 DEFAULT] name: /run/systemd/journal/flushed
16:49:15.160052: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.160053: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.160055: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.160056: [fs/namei.c path_init 2364 DEFAULT] path_init
16:49:15.160058: [fs/namei.c path_lookupat 2486 DEFAULT] path_lookupat
16:49:15.160059: [fs/namei.c link_path_walk 2260 DEFAULT] name: /run/systemd/journal/flushed
16:49:15.160060: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.160062: [fs/namei.c link_path_walk 2260 DEFAULT] name: (efault)
16:49:15.160063: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.160065: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.160066: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.160067: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.160068: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.160069: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.160071: [fs/namei.c putname 262 DEFAULT] name: /run/systemd/journal/flushed
16:49:15.160072: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.160073: [fs/namei.c path_init 2364 DEFAULT] path_init
16:49:15.160074: [include/linux/fs.h __sb_start_write 1666 DEFAULT] __sb_start_write
16:49:15.160076: [fs/namei.c path_lookupat 2486 DEFAULT] path_lookupat
16:49:15.160077: [fs/namei.c link_path_walk 2260 DEFAULT] name: /run/systemd/journal/flushed
16:49:15.160078: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.160079: [fs/namei.c link_path_walk 2260 DEFAULT] name: (efault)
16:49:15.160080: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.160081: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.160083: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.160084: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.160085: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.160086: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.160087: [fs/namei.c putname 262 DEFAULT] name: /run/systemd/journal/flushed
16:49:15.160089: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.160090: [include/linux/fs.h __sb_start_write 1666 DEFAULT] __sb_start_write
16:49:15.160091: [fs/namei.c path_init 2364 DEFAULT] path_init
16:49:15.160092: [fs/namei.c path_lookupat 2486 DEFAULT] path_lookupat
16:49:15.160094: [fs/namei.c link_path_walk 2260 DEFAULT] name: /run/systemd/journal/flushed
16:49:15.160095: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.160096: [fs/namei.c link_path_walk 2260 DEFAULT] name: (efault)
16:49:15.160097: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.160098: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.160099: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.160101: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.160103: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.160104: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.160106: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.160107: [fs/namei.c putname 262 DEFAULT] name: /run/systemd/journal/flushed
16:49:15.160108: [fs/namei.c path_init 2364 DEFAULT] path_init
16:49:15.160109: [fs/namei.c path_lookupat 2486 DEFAULT] path_lookupat
16:49:15.160110: [fs/namei.c link_path_walk 2260 DEFAULT] name: /run/systemd/journal/flushed
16:49:15.160112: [mm/slub.c __slab_alloc 3613 DEFAULT] 
16:49:15.160113: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.160114: [fs/namei.c link_path_walk 2260 DEFAULT] name: (efault)
16:49:15.160115: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.160117: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.160118: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.160119: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.160120: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.160121: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.160123: [fs/namei.c putname 262 DEFAULT] name: /run/systemd/journal/flushed
16:49:15.160124: [fs/namei.c path_init 2364 DEFAULT] path_init
16:49:15.160125: [fs/namei.c path_lookupat 2486 DEFAULT] path_lookupat
16:49:15.160126: [fs/namei.c link_path_walk 2260 DEFAULT] name: /run/systemd/journal/flushed
16:49:15.160128: [mm/slub.c __slab_alloc 3613 DEFAULT] 
16:49:15.160129: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.160130: [fs/namei.c link_path_walk 2260 DEFAULT] name: (efault)
16:49:15.160131: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.160132: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.160133: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.160134: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.160135: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.160137: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.160138: [fs/namei.c putname 262 DEFAULT] name: /run/systemd/journal/flushed
16:49:15.160139: [fs/namei.c path_init 2364 DEFAULT] path_init
16:49:15.160140: [fs/namei.c path_lookupat 2486 DEFAULT] path_lookupat
16:49:15.160141: [fs/namei.c link_path_walk 2260 DEFAULT] name: /run/systemd/journal/flushed
16:49:15.160142: [mm/slub.c __slab_alloc 3613 DEFAULT] 
16:49:15.160144: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.160145: [fs/namei.c link_path_walk 2260 DEFAULT] name: (efault)
16:49:15.160146: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.160147: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.160148: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.160149: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.160151: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.160152: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.160153: [fs/namei.c putname 262 DEFAULT] name: /run/systemd/journal/flushed
16:49:15.160154: [fs/namei.c path_init 2364 DEFAULT] path_init
16:49:15.160155: [fs/namei.c path_lookupat 2486 DEFAULT] path_lookupat
16:49:15.160157: [fs/namei.c link_path_walk 2260 DEFAULT] name: /run/systemd/journal/flushed
16:49:15.160158: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.160159: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.160161: [fs/namei.c link_path_walk 2260 DEFAULT] name: (efault)
16:49:15.160163: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.160164: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.160165: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.160166: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.160167: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.160168: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.160170: [fs/namei.c putname 262 DEFAULT] name: /run/systemd/journal/flushed
16:49:15.160171: [fs/namei.c path_init 2364 DEFAULT] path_init
16:49:15.160172: [fs/namei.c path_lookupat 2486 DEFAULT] path_lookupat
16:49:15.160173: [fs/namei.c link_path_walk 2260 DEFAULT] name: /run/systemd/journal/flushed
16:49:15.160175: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.160176: [fs/namei.c link_path_walk 2260 DEFAULT] name: (efault)
16:49:15.160177: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.160178: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.160179: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.160180: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.160181: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.160183: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.160184: [fs/namei.c putname 262 DEFAULT] name: /run/systemd/journal/flushed
16:49:15.160185: [fs/namei.c path_init 2364 DEFAULT] path_init
16:49:15.160186: [fs/namei.c path_lookupat 2486 DEFAULT] path_lookupat
16:49:15.160187: [fs/namei.c link_path_walk 2260 DEFAULT] name: /run/systemd/journal/flushed
16:49:15.160189: [mm/slub.c __slab_alloc 3613 DEFAULT] 
16:49:15.160190: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.160191: [fs/namei.c link_path_walk 2260 DEFAULT] name: (efault)
16:49:15.160192: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.160193: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.160194: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.160196: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.160197: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.160198: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.160199: [fs/namei.c putname 262 DEFAULT] name: /run/systemd/journal/flushed
16:49:15.160200: [fs/namei.c path_init 2364 DEFAULT] path_init
16:49:15.160308: [fs/namei.c path_lookupat 2486 DEFAULT] path_lookupat
16:49:15.160312: [fs/namei.c link_path_walk 2260 DEFAULT] name: /run/systemd/journal/flushed
16:49:15.160313: [mm/slub.c __slab_alloc 3613 DEFAULT] 
16:49:15.160314: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.160315: [fs/namei.c link_path_walk 2260 DEFAULT] name: (efault)
16:49:15.160317: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.160318: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.160319: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.160320: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.160321: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.160322: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.160324: [fs/namei.c putname 262 DEFAULT] name: /run/systemd/journal/flushed
16:49:15.160325: [fs/namei.c path_init 2364 DEFAULT] path_init
16:49:15.160326: [fs/namei.c path_lookupat 2486 DEFAULT] path_lookupat
16:49:15.160327: [fs/namei.c link_path_walk 2260 DEFAULT] name: /run/systemd/journal/flushed
16:49:15.160328: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.160330: [fs/namei.c link_path_walk 2260 DEFAULT] name: (efault)
16:49:15.160331: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.160332: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.160333: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.160334: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.160336: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.160337: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.160338: [fs/namei.c putname 262 DEFAULT] name: /run/systemd/journal/flushed
16:49:15.160339: [fs/namei.c path_init 2364 DEFAULT] path_init
16:49:15.160340: [fs/namei.c path_lookupat 2486 DEFAULT] path_lookupat
16:49:15.160341: [fs/namei.c link_path_walk 2260 DEFAULT] name: /run/systemd/journal/flushed
16:49:15.160343: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.160344: [fs/namei.c link_path_walk 2260 DEFAULT] name: (efault)
16:49:15.160345: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.160346: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.160348: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.160349: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.160350: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.160351: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.160353: [fs/namei.c putname 262 DEFAULT] name: /run/systemd/journal/flushed
16:49:15.160354: [fs/namei.c path_init 2364 DEFAULT] path_init
16:49:15.160355: [fs/namei.c path_lookupat 2486 DEFAULT] path_lookupat
16:49:15.160356: [fs/namei.c link_path_walk 2260 DEFAULT] name: /run/systemd/journal/flushed
16:49:15.160358: [mm/slub.c __slab_alloc 3613 DEFAULT] 
16:49:15.160359: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.160360: [fs/namei.c link_path_walk 2260 DEFAULT] name: (efault)
16:49:15.160362: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.160363: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.160364: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.160365: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.160367: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.160368: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.160401: [fs/namei.c putname 262 DEFAULT] name: /run/systemd/journal/flushed
16:49:15.160404: [fs/namei.c path_init 2364 DEFAULT] path_init
16:49:15.160405: [fs/namei.c path_lookupat 2486 DEFAULT] path_lookupat
16:49:15.160406: [fs/namei.c link_path_walk 2260 DEFAULT] name: /run/systemd/journal/flushed
16:49:15.160408: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.160409: [fs/namei.c link_path_walk 2260 DEFAULT] name: (efault)
16:49:15.160410: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.160411: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.160413: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.160414: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.160415: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.160416: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.160973: [fs/namei.c putname 262 DEFAULT] name: /run/systemd/journal/flushed
16:49:15.160984: [fs/namei.c path_init 2364 DEFAULT] path_init
16:49:15.160985: [fs/namei.c path_lookupat 2486 DEFAULT] path_lookupat
16:49:15.160986: [fs/namei.c link_path_walk 2260 DEFAULT] name: /run/systemd/journal/flushed
16:49:15.160988: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.160989: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.160993: [fs/namei.c link_path_walk 2260 DEFAULT] name: (efault)
16:49:15.160994: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.160996: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.160997: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.160998: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.160999: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.161000: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.161001: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.161003: [fs/namei.c putname 262 DEFAULT] name: /run/systemd/journal/flushed
16:49:15.161004: [fs/namei.c path_init 2364 DEFAULT] path_init
16:49:15.161005: [fs/namei.c path_lookupat 2486 DEFAULT] path_lookupat
16:49:15.161006: [fs/namei.c link_path_walk 2260 DEFAULT] name: /run/systemd/journal/flushed
16:49:15.161008: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.161009: [fs/namei.c link_path_walk 2260 DEFAULT] name: (efault)
16:49:15.161010: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.161011: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.161012: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.161013: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.161014: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.161016: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.161017: [fs/namei.c putname 262 DEFAULT] name: /run/systemd/journal/flushed
16:49:15.161018: [fs/namei.c path_init 2364 DEFAULT] path_init
16:49:15.161019: [fs/namei.c path_lookupat 2486 DEFAULT] path_lookupat
16:49:15.161020: [fs/namei.c link_path_walk 2260 DEFAULT] name: /run/systemd/journal/flushed
16:49:15.161021: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.161022: [fs/namei.c link_path_walk 2260 DEFAULT] name: (efault)
16:49:15.161024: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.161025: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.161026: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.161027: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.161028: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.161029: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.161031: [fs/namei.c putname 262 DEFAULT] name: /run/systemd/journal/flushed
16:49:15.161032: [fs/namei.c path_init 2364 DEFAULT] path_init
16:49:15.161033: [fs/namei.c path_lookupat 2486 DEFAULT] path_lookupat
16:49:15.161034: [fs/namei.c link_path_walk 2260 DEFAULT] name: /run/systemd/journal/flushed
16:49:15.161035: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.161036: [fs/namei.c link_path_walk 2260 DEFAULT] name: (efault)
16:49:15.161038: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.161039: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.161040: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.161041: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.161042: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.161043: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.161044: [fs/namei.c putname 262 DEFAULT] name: /run/systemd/journal/flushed
16:49:15.161046: [fs/namei.c path_init 2364 DEFAULT] path_init
16:49:15.161047: [fs/namei.c path_lookupat 2486 DEFAULT] path_lookupat
16:49:15.161048: [fs/namei.c link_path_walk 2260 DEFAULT] name: /run/systemd/journal/flushed
16:49:15.161049: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.161050: [fs/namei.c link_path_walk 2260 DEFAULT] name: (efault)
16:49:15.161051: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.161053: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.161054: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.161055: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.161056: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.161057: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.161058: [fs/namei.c putname 262 DEFAULT] name: /run/systemd/journal/flushed
16:49:15.161060: [fs/namei.c path_init 2364 DEFAULT] path_init
16:49:15.161081: [fs/namei.c path_lookupat 2486 DEFAULT] path_lookupat
16:49:15.161084: [fs/namei.c link_path_walk 2260 DEFAULT] name: /run/systemd/journal/flushed
16:49:15.161085: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.161086: [fs/namei.c link_path_walk 2260 DEFAULT] name: (efault)
16:49:15.161088: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.161152: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.161154: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.161156: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.161157: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.161158: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.161217: [fs/namei.c putname 262 DEFAULT] name: /run/systemd/journal/flushed
16:49:15.161705: [fs/namei.c path_init 2364 DEFAULT] path_init
16:49:15.161709: [fs/namei.c path_lookupat 2486 DEFAULT] path_lookupat
16:49:15.161710: [fs/namei.c link_path_walk 2260 DEFAULT] name: /run/systemd/journal/flushed
16:49:15.161711: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.161712: [fs/namei.c link_path_walk 2260 DEFAULT] name: (efault)
16:49:15.161712: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.161713: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.161714: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.161714: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.161715: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.161716: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.161716: [fs/namei.c putname 262 DEFAULT] name: /run/systemd/journal/flushed
16:49:15.161717: [fs/namei.c path_init 2364 DEFAULT] path_init
16:49:15.161718: [fs/namei.c path_lookupat 2486 DEFAULT] path_lookupat
16:49:15.161719: [fs/namei.c link_path_walk 2260 DEFAULT] name: /run/systemd/journal/flushed
16:49:15.161719: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.161720: [fs/namei.c link_path_walk 2260 DEFAULT] name: (efault)
16:49:15.161721: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.161721: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.161722: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.161723: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.161723: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.161724: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.161900: [fs/namei.c putname 262 DEFAULT] name: /run/systemd/journal/flushed
16:49:15.161901: [fs/namei.c path_init 2364 DEFAULT] path_init
16:49:15.161902: [fs/namei.c path_lookupat 2486 DEFAULT] path_lookupat
16:49:15.161903: [fs/namei.c link_path_walk 2260 DEFAULT] name: /run/systemd/journal/flushed
16:49:15.161904: [mm/slub.c __slab_alloc 3613 DEFAULT] 
16:49:15.161905: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.161905: [fs/namei.c link_path_walk 2260 DEFAULT] name: (efault)
16:49:15.161906: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.161907: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.161907: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.161908: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.161909: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.161909: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.161910: [fs/namei.c putname 262 DEFAULT] name: /run/systemd/journal/flushed
16:49:15.161911: [fs/namei.c path_init 2364 DEFAULT] path_init
16:49:15.161911: [fs/namei.c path_lookupat 2486 DEFAULT] path_lookupat
16:49:15.161912: [fs/namei.c link_path_walk 2260 DEFAULT] name: /run/systemd/journal/flushed
16:49:15.161913: [mm/slub.c __slab_alloc 3613 DEFAULT] 
16:49:15.161913: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.161914: [fs/namei.c link_path_walk 2260 DEFAULT] name: (efault)
16:49:15.161915: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.161915: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.161940: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.161942: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.161942: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.161943: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.161944: [fs/namei.c putname 262 DEFAULT] name: /run/systemd/journal/flushed
16:49:15.161945: [fs/namei.c path_init 2364 DEFAULT] path_init
16:49:15.161945: [fs/namei.c path_lookupat 2486 DEFAULT] path_lookupat
16:49:15.161956: [fs/namei.c link_path_walk 2260 DEFAULT] name: /run/systemd/journal/flushed
16:49:15.161957: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.161958: [fs/namei.c link_path_walk 2260 DEFAULT] name: (efault)
16:49:15.161959: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.161960: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.161960: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.161970: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.161972: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.161973: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.161973: [fs/namei.c putname 262 DEFAULT] name: /run/systemd/journal/flushed
16:49:15.161974: [fs/namei.c path_init 2364 DEFAULT] path_init
16:49:15.161975: [fs/namei.c path_lookupat 2486 DEFAULT] path_lookupat
16:49:15.161986: [fs/namei.c link_path_walk 2260 DEFAULT] name: /run/systemd/journal/flushed
16:49:15.162116: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.162121: [fs/namei.c link_path_walk 2260 DEFAULT] name: (efault)
16:49:15.162124: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.162128: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.162131: [include/linux/fs.h __sb_start_write 1666 DEFAULT] __sb_start_write
16:49:15.162134: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.162137: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.162140: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.162145: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.162148: [fs/namei.c putname 262 DEFAULT] name: /run/systemd/journal/flushed
16:49:15.162151: [fs/namei.c path_init 2364 DEFAULT] path_init
16:49:15.162153: [fs/namei.c path_lookupat 2486 DEFAULT] path_lookupat
16:49:15.162157: [fs/namei.c link_path_walk 2260 DEFAULT] name: /run/systemd/journal/flushed
16:49:15.162160: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.162164: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.162169: [fs/namei.c link_path_walk 2260 DEFAULT] name: (efault)
16:49:15.162171: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.162172: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.162174: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.162175: [include/linux/fs.h __sb_start_write 1666 DEFAULT] __sb_start_write
16:49:15.162176: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.162178: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.162179: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.162180: [fs/namei.c putname 262 DEFAULT] name: /run/systemd/journal/flushed
16:49:15.162185: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.162187: [include/linux/fs.h __sb_start_write 1666 DEFAULT] __sb_start_write
16:49:15.162190: [fs/namei.c path_init 2364 DEFAULT] path_init
16:49:15.162193: [fs/namei.c path_lookupat 2486 DEFAULT] path_lookupat
16:49:15.162197: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.162200: [fs/namei.c link_path_walk 2260 DEFAULT] name: /run/systemd/journal/flushed
16:49:15.162204: [include/linux/fs.h __sb_start_write 1666 DEFAULT] __sb_start_write
16:49:15.162206: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.162209: [fs/namei.c link_path_walk 2260 DEFAULT] name: (efault)
16:49:15.162212: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.162215: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.162217: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.162220: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.162223: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.162226: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.162229: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.162233: [include/linux/fs.h __sb_start_write 1666 DEFAULT] __sb_start_write
16:49:15.162236: [fs/namei.c putname 262 DEFAULT] name: /run/systemd/journal/flushed
16:49:15.162239: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.162242: [include/linux/fs.h __sb_start_write 1666 DEFAULT] __sb_start_write
16:49:15.162245: [fs/namei.c path_init 2364 DEFAULT] path_init
16:49:15.162249: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.162252: [fs/namei.c path_lookupat 2486 DEFAULT] path_lookupat
16:49:15.162255: [fs/namei.c link_path_walk 2260 DEFAULT] name: /run/systemd/journal/flushed
16:49:15.162257: [include/linux/fs.h __sb_start_write 1666 DEFAULT] __sb_start_write
16:49:15.162261: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.162263: [fs/namei.c link_path_walk 2260 DEFAULT] name: (efault)
16:49:15.162267: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.162269: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.162273: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.162275: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.162278: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.162281: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.162284: [fs/namei.c putname 262 DEFAULT] name: /run/systemd/journal/flushed
16:49:15.162287: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.162290: [include/linux/fs.h __sb_start_write 1666 DEFAULT] __sb_start_write
16:49:15.162293: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.162296: [fs/namei.c path_init 2364 DEFAULT] path_init
16:49:15.162298: [fs/namei.c path_lookupat 2486 DEFAULT] path_lookupat
16:49:15.162302: [include/linux/fs.h __sb_start_write 1666 DEFAULT] __sb_start_write
16:49:15.162305: [fs/namei.c link_path_walk 2260 DEFAULT] name: /run/systemd/journal/flushed
16:49:15.162548: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.162552: [fs/namei.c link_path_walk 2260 DEFAULT] name: (efault)
16:49:15.162555: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.162558: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.162561: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.162564: [include/linux/fs.h __sb_start_write 1666 DEFAULT] __sb_start_write
16:49:15.162568: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.162570: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.162573: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.162576: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.162579: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.162582: [fs/namei.c putname 262 DEFAULT] name: /run/systemd/journal/flushed
16:49:15.162585: [include/linux/fs.h __sb_start_write 1666 DEFAULT] __sb_start_write
16:49:15.162588: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.162591: [fs/namei.c path_init 2364 DEFAULT] path_init
16:49:15.162594: [include/linux/fs.h __sb_start_write 1666 DEFAULT] __sb_start_write
16:49:15.162597: [fs/namei.c path_lookupat 2486 DEFAULT] path_lookupat
16:49:15.162676: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.162681: [fs/namei.c link_path_walk 2260 DEFAULT] name: /run/systemd/journal/flushed
16:49:15.162685: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.162687: [fs/namei.c link_path_walk 2260 DEFAULT] name: (efault)
16:49:15.162691: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.162694: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.162697: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.162700: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.162702: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.162705: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.162708: [fs/namei.c putname 262 DEFAULT] name: /run/systemd/journal/flushed
16:49:15.162711: [fs/namei.c path_init 2364 DEFAULT] path_init
16:49:15.162714: [fs/namei.c path_lookupat 2486 DEFAULT] path_lookupat
16:49:15.162717: [fs/namei.c link_path_walk 2260 DEFAULT] name: /run/systemd/journal/flushed
16:49:15.162720: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.162723: [fs/namei.c link_path_walk 2260 DEFAULT] name: (efault)
16:49:15.162726: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.162729: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.162732: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.162735: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.162738: [mm/slub.c __slab_alloc 3613 DEFAULT] 
16:49:15.162741: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.162744: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.162747: [fs/namei.c putname 262 DEFAULT] name: /run/systemd/journal/flushed
16:49:15.162750: [fs/namei.c path_init 2364 DEFAULT] path_init
16:49:15.162752: [fs/namei.c path_lookupat 2486 DEFAULT] path_lookupat
16:49:15.162756: [fs/namei.c link_path_walk 2260 DEFAULT] name: /run/systemd/journal/flushed
16:49:15.162758: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.162762: [fs/namei.c link_path_walk 2260 DEFAULT] name: (efault)
16:49:15.162765: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.162768: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.162771: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.162775: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.162778: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.162782: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.162783: [fs/namei.c putname 262 DEFAULT] name: /run/systemd/journal/flushed
16:49:15.162784: [include/linux/fs.h __sb_start_write 1666 DEFAULT] __sb_start_write
16:49:15.162785: [fs/namei.c path_init 2364 DEFAULT] path_init
16:49:15.162787: [fs/namei.c path_lookupat 2486 DEFAULT] path_lookupat
16:49:15.162789: [fs/namei.c link_path_walk 2260 DEFAULT] name: /run/systemd/journal/flushed
16:49:15.162790: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.162791: [fs/namei.c link_path_walk 2260 DEFAULT] name: (efault)
16:49:15.162792: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.162793: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.162797: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.162800: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.162804: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.162807: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.162812: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.162815: [fs/namei.c putname 262 DEFAULT] name: /run/systemd/journal/flushed
16:49:15.162819: [include/linux/fs.h __sb_start_write 1666 DEFAULT] __sb_start_write
16:49:15.162822: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.162825: [include/linux/fs.h __sb_start_write 1666 DEFAULT] __sb_start_write
16:49:15.162829: [fs/namei.c path_init 2364 DEFAULT] path_init
16:49:15.162831: [fs/namei.c path_lookupat 2486 DEFAULT] path_lookupat
16:49:15.162833: [fs/namei.c link_path_walk 2260 DEFAULT] name: /run/systemd/journal/flushed
16:49:15.162834: [mm/slub.c __slab_alloc 3613 DEFAULT] 
16:49:15.162835: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.162837: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.162838: [fs/namei.c link_path_walk 2260 DEFAULT] name: (efault)
16:49:15.162839: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.162841: [include/linux/fs.h __sb_start_write 1666 DEFAULT] __sb_start_write
16:49:15.162842: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.162843: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.162844: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.162845: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.162847: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.162850: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.162852: [fs/namei.c putname 262 DEFAULT] name: /run/systemd/journal/flushed
16:49:15.162853: [include/linux/fs.h __sb_start_write 1666 DEFAULT] __sb_start_write
16:49:15.162854: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.162856: [include/linux/fs.h __sb_start_write 1666 DEFAULT] __sb_start_write
16:49:15.162858: [fs/namei.c path_init 2364 DEFAULT] path_init
16:49:15.162860: [fs/namei.c path_lookupat 2486 DEFAULT] path_lookupat
16:49:15.162861: [fs/namei.c link_path_walk 2260 DEFAULT] name: /run/systemd/journal/flushed
16:49:15.162862: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.162863: [fs/namei.c link_path_walk 2260 DEFAULT] name: (efault)
16:49:15.162864: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.162865: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.162867: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.162868: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.162870: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.162871: [include/linux/fs.h __sb_start_write 1666 DEFAULT] __sb_start_write
16:49:15.162872: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.162874: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.162905: [fs/namei.c putname 262 DEFAULT] name: /run/systemd/journal/flushed
16:49:15.162909: [mm/slub.c __slab_alloc 3613 DEFAULT] 
16:49:15.162910: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.162911: [include/linux/fs.h __sb_start_write 1666 DEFAULT] __sb_start_write
16:49:15.163149: [fs/namei.c path_init 2364 DEFAULT] path_init
16:49:15.163154: [fs/namei.c path_lookupat 2486 DEFAULT] path_lookupat
16:49:15.163156: [fs/namei.c link_path_walk 2260 DEFAULT] name: /run/systemd/journal/flushed
16:49:15.163158: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.163160: [mm/slub.c __slab_alloc 3613 DEFAULT] 
16:49:15.163162: [include/linux/fs.h __sb_start_write 1666 DEFAULT] __sb_start_write
16:49:15.163163: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.163165: [fs/namei.c link_path_walk 2260 DEFAULT] name: (efault)
16:49:15.163166: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.163167: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.163169: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.163178: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.163207: [include/linux/fs.h __sb_start_write 1666 DEFAULT] __sb_start_write
16:49:15.163210: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.163212: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.163214: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.163215: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.163217: [fs/namei.c putname 262 DEFAULT] name: /run/systemd/journal/flushed
16:49:15.163218: [fs/namei.c path_init 2364 DEFAULT] path_init
16:49:15.163220: [fs/namei.c path_lookupat 2486 DEFAULT] path_lookupat
16:49:15.163221: [fs/namei.c link_path_walk 2260 DEFAULT] name: /run/systemd/journal/flushed
16:49:15.163223: [mm/slub.c __slab_alloc 3613 DEFAULT] 
16:49:15.163224: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.163226: [fs/namei.c link_path_walk 2260 DEFAULT] name: (efault)
16:49:15.163227: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.163228: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.163230: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.163231: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.163233: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.163234: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.163236: [fs/namei.c putname 262 DEFAULT] name: /run/systemd/journal/flushed
16:49:15.163237: [include/linux/fs.h __sb_start_write 1666 DEFAULT] __sb_start_write
16:49:15.163239: [fs/namei.c path_init 2364 DEFAULT] path_init
16:49:15.163240: [fs/namei.c path_lookupat 2486 DEFAULT] path_lookupat
16:49:15.163242: [fs/namei.c link_path_walk 2260 DEFAULT] name: /run/systemd/journal/flushed
16:49:15.163243: [mm/slub.c __slab_alloc 3613 DEFAULT] 
16:49:15.163245: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.163246: [fs/namei.c link_path_walk 2260 DEFAULT] name: (efault)
16:49:15.163248: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.163249: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.163251: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.163252: [include/linux/fs.h __sb_start_write 1666 DEFAULT] __sb_start_write
16:49:15.163254: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.163255: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.163256: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.163257: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.163258: [fs/namei.c putname 262 DEFAULT] name: /run/systemd/journal/flushed
16:49:15.163260: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.163261: [include/linux/fs.h __sb_start_write 1666 DEFAULT] __sb_start_write
16:49:15.163262: [fs/namei.c path_init 2364 DEFAULT] path_init
16:49:15.163264: [fs/namei.c path_lookupat 2486 DEFAULT] path_lookupat
16:49:15.163265: [fs/namei.c link_path_walk 2260 DEFAULT] name: /run/systemd/journal/flushed
16:49:15.163266: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.163267: [mm/slub.c __slab_alloc 3613 DEFAULT] 
16:49:15.163269: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.163270: [include/linux/fs.h __sb_start_write 1666 DEFAULT] __sb_start_write
16:49:15.163271: [fs/namei.c link_path_walk 2260 DEFAULT] name: (efault)
16:49:15.163272: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.163273: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.163275: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.163276: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.163277: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.163278: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.163280: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.163282: [fs/namei.c putname 262 DEFAULT] name: /run/systemd/journal/flushed
16:49:15.163283: [fs/namei.c path_init 2364 DEFAULT] path_init
16:49:15.163284: [fs/namei.c path_lookupat 2486 DEFAULT] path_lookupat
16:49:15.163286: [fs/namei.c link_path_walk 2260 DEFAULT] name: /run/systemd/journal/flushed
16:49:15.163287: [mm/slub.c __slab_alloc 3613 DEFAULT] 
16:49:15.163288: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.163289: [fs/namei.c link_path_walk 2260 DEFAULT] name: (efault)
16:49:15.163291: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.163292: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.163293: [include/linux/fs.h __sb_start_write 1666 DEFAULT] __sb_start_write
16:49:15.163294: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.163296: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.163297: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.163301: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.163434: [fs/namei.c putname 262 DEFAULT] name: /run/systemd/journal/flushed
16:49:15.163438: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.163440: [include/linux/fs.h __sb_start_write 1666 DEFAULT] __sb_start_write
16:49:15.163441: [fs/namei.c path_init 2364 DEFAULT] path_init
16:49:15.163443: [fs/namei.c path_lookupat 2486 DEFAULT] path_lookupat
16:49:15.163444: [fs/namei.c link_path_walk 2260 DEFAULT] name: /run/systemd/journal/flushed
16:49:15.163445: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.163446: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.163449: [fs/namei.c link_path_walk 2260 DEFAULT] name: (efault)
16:49:15.163450: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.163452: [include/linux/fs.h __sb_start_write 1666 DEFAULT] __sb_start_write
16:49:15.163454: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.163455: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.163457: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.163458: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.163460: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.163461: [fs/namei.c putname 262 DEFAULT] name: /run/systemd/journal/flushed
16:49:15.163462: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.163463: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.163465: [include/linux/fs.h __sb_start_write 1666 DEFAULT] __sb_start_write
16:49:15.163659: [fs/namei.c path_init 2364 DEFAULT] path_init
16:49:15.163666: [fs/namei.c path_lookupat 2486 DEFAULT] path_lookupat
16:49:15.163668: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.163670: [fs/namei.c link_path_walk 2260 DEFAULT] name: /run/systemd/journal/flushed
16:49:15.163671: [mm/slub.c __slab_alloc 3613 DEFAULT] 
16:49:15.163673: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.163674: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.163677: [fs/namei.c link_path_walk 2260 DEFAULT] name: (efault)
16:49:15.163679: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.163680: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.163681: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.163683: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.163684: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.163686: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.163687: [fs/namei.c putname 262 DEFAULT] name: /run/systemd/journal/flushed
16:49:15.163688: [include/linux/fs.h __sb_start_write 1666 DEFAULT] __sb_start_write
16:49:15.163689: [fs/namei.c path_init 2364 DEFAULT] path_init
16:49:15.163692: [fs/namei.c path_lookupat 2486 DEFAULT] path_lookupat
16:49:15.163695: [fs/namei.c link_path_walk 2260 DEFAULT] name: /run/systemd/journal/flushed
16:49:15.163698: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.163700: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.163704: [include/linux/fs.h __sb_start_write 1666 DEFAULT] __sb_start_write
16:49:15.163905: [fs/namei.c link_path_walk 2260 DEFAULT] name: (efault)
16:49:15.163910: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.163914: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.163916: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.163920: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.163922: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.163925: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.163928: [fs/namei.c putname 262 DEFAULT] name: /run/systemd/journal/flushed
16:49:15.163932: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.163935: [fs/namei.c path_init 2364 DEFAULT] path_init
16:49:15.163938: [fs/namei.c path_lookupat 2486 DEFAULT] path_lookupat
16:49:15.163941: [fs/namei.c link_path_walk 2260 DEFAULT] name: /run/systemd/journal/flushed
16:49:15.163944: [mm/slub.c __slab_alloc 3613 DEFAULT] 
16:49:15.163947: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.163950: [fs/namei.c link_path_walk 2260 DEFAULT] name: (efault)
16:49:15.163952: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.163955: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.163958: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.163961: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.163964: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.163967: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.163970: [fs/namei.c putname 262 DEFAULT] name: /run/systemd/journal/flushed
16:49:15.163974: [include/linux/fs.h __sb_start_write 1666 DEFAULT] __sb_start_write
16:49:15.163976: [fs/namei.c path_init 2364 DEFAULT] path_init
16:49:15.163980: [fs/namei.c path_lookupat 2486 DEFAULT] path_lookupat
16:49:15.163983: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.163987: [fs/namei.c link_path_walk 2260 DEFAULT] name: /run/systemd/journal/flushed
16:49:15.163990: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.163993: [include/linux/fs.h __sb_start_write 1666 DEFAULT] __sb_start_write
16:49:15.163994: [fs/namei.c link_path_walk 2260 DEFAULT] name: (efault)
16:49:15.164062: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.164066: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.164067: [mm/slub.c __slab_alloc 3613 DEFAULT] 
16:49:15.164068: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.164070: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.164071: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.164073: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.164077: [fs/namei.c putname 262 DEFAULT] name: /run/systemd/journal/flushed
16:49:15.164079: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.164083: [include/linux/fs.h __sb_start_write 1666 DEFAULT] __sb_start_write
16:49:15.164100: [fs/namei.c path_init 2364 DEFAULT] path_init
16:49:15.164106: [fs/namei.c path_lookupat 2486 DEFAULT] path_lookupat
16:49:15.164109: [fs/namei.c link_path_walk 2260 DEFAULT] name: /run/systemd/journal/flushed
16:49:15.164111: [mm/slub.c __slab_alloc 3613 DEFAULT] 
16:49:15.164115: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.164118: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.164124: [include/linux/fs.h __sb_start_write 1666 DEFAULT] __sb_start_write
16:49:15.164126: [fs/namei.c link_path_walk 2260 DEFAULT] name: (efault)
16:49:15.164129: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.164132: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.164135: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.164138: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.164141: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.164144: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.164148: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.164152: [fs/namei.c putname 262 DEFAULT] name: /run/systemd/journal/flushed
16:49:15.164156: [fs/namei.c path_init 2364 DEFAULT] path_init
16:49:15.164159: [fs/namei.c path_lookupat 2486 DEFAULT] path_lookupat
16:49:15.164163: [fs/namei.c link_path_walk 2260 DEFAULT] name: /run/systemd/journal/flushed
16:49:15.164165: [mm/slub.c __slab_alloc 3613 DEFAULT] 
16:49:15.164168: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.164172: [include/linux/fs.h __sb_start_write 1666 DEFAULT] __sb_start_write
16:49:15.164175: [fs/namei.c link_path_walk 2260 DEFAULT] name: (efault)
16:49:15.164178: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.164181: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.164185: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.164188: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.164192: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.164195: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.164468: [fs/namei.c putname 262 DEFAULT] name: /run/systemd/journal/flushed
16:49:15.164477: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.164480: [include/linux/fs.h __sb_start_write 1666 DEFAULT] __sb_start_write
16:49:15.164484: [fs/namei.c path_init 2364 DEFAULT] path_init
16:49:15.164487: [fs/namei.c path_lookupat 2486 DEFAULT] path_lookupat
16:49:15.164490: [fs/namei.c link_path_walk 2260 DEFAULT] name: /run/systemd/journal/flushed
16:49:15.164494: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.164497: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.164503: [fs/namei.c link_path_walk 2260 DEFAULT] name: (efault)
16:49:15.164506: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.164508: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.164509: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.164510: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.164512: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.164513: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.164515: [fs/namei.c putname 262 DEFAULT] name: /run/systemd/journal/flushed
16:49:15.164516: [include/linux/fs.h __sb_start_write 1666 DEFAULT] __sb_start_write
16:49:15.164517: [fs/namei.c path_init 2364 DEFAULT] path_init
16:49:15.164520: [fs/namei.c path_lookupat 2486 DEFAULT] path_lookupat
16:49:15.164524: [fs/namei.c link_path_walk 2260 DEFAULT] name: /run/systemd/journal/flushed
16:49:15.164527: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.164529: [fs/namei.c link_path_walk 2260 DEFAULT] name: (efault)
16:49:15.164530: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.164532: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.164535: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.164539: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.164542: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.164546: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.164549: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.164553: [fs/namei.c putname 262 DEFAULT] name: /run/systemd/journal/flushed
16:49:15.164557: [include/linux/fs.h __sb_start_write 1666 DEFAULT] __sb_start_write
16:49:15.164558: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.164562: [fs/namei.c path_init 2364 DEFAULT] path_init
16:49:15.164565: [fs/namei.c path_lookupat 2486 DEFAULT] path_lookupat
16:49:15.164567: [fs/namei.c link_path_walk 2260 DEFAULT] name: /run/systemd/journal/flushed
16:49:15.164613: [mm/slub.c __slab_alloc 3613 DEFAULT] 
16:49:15.164615: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.164617: [fs/namei.c link_path_walk 2260 DEFAULT] name: (efault)
16:49:15.164618: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.164620: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.164622: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.164623: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.164625: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.164627: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.164628: [fs/namei.c putname 262 DEFAULT] name: /run/systemd/journal/flushed
16:49:15.164630: [include/linux/fs.h __sb_start_write 1666 DEFAULT] __sb_start_write
16:49:15.164631: [fs/namei.c path_init 2364 DEFAULT] path_init
16:49:15.164634: [fs/namei.c path_lookupat 2486 DEFAULT] path_lookupat
16:49:15.164637: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.164641: [fs/namei.c link_path_walk 2260 DEFAULT] name: /run/systemd/journal/flushed
16:49:15.164644: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.164648: [include/linux/fs.h __sb_start_write 1666 DEFAULT] __sb_start_write
16:49:15.164651: [fs/namei.c link_path_walk 2260 DEFAULT] name: (efault)
16:49:15.164655: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.164658: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.164662: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.164665: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.164667: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.164668: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.164669: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.164670: [fs/namei.c putname 262 DEFAULT] name: /run/systemd/journal/flushed
16:49:15.164672: [fs/namei.c path_init 2364 DEFAULT] path_init
16:49:15.164673: [fs/namei.c path_lookupat 2486 DEFAULT] path_lookupat
16:49:15.164674: [fs/namei.c link_path_walk 2260 DEFAULT] name: /run/systemd/journal/flushed
16:49:15.164675: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.164679: [fs/namei.c link_path_walk 2260 DEFAULT] name: (efault)
16:49:15.164683: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.164686: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.164687: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.164688: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.164691: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.164695: [fs/open.c __do_sys_openat 1532 DEFAULT] count: 656836
16:49:15.164698: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.164702: [fs/namei.c putname 262 DEFAULT] name: /run/systemd/journal/flushed
16:49:15.164706: [fs/open.c do_sys_openat2 1437 DEFAULT] tmp->name: /etc/machine-id
16:49:15.164709: [fs/file.c alloc_fd 505 DEFAULT] allocate a file descriptor, mark it busy. tgid: 2661, pid: 2661
16:49:15.164727: [fs/namei.c do_filp_open 3841 DEFAULT] pathname: /etc/machine-id
16:49:15.164731: [fs/namei.c path_openat 3800 DEFAULT] alloc_empty_file
16:49:15.164735: [fs/file_table.c alloc_empty_file 192 DEFAULT] alloc_empty_file
16:49:15.164738: [fs/file_table.c init_file 152 DEFAULT] security_file_alloc
16:49:15.164740: [fs/namei.c path_init 2364 DEFAULT] path_init
16:49:15.164800: [fs/namei.c link_path_walk 2260 DEFAULT] name: /etc/machine-id
16:49:15.164804: [fs/namei.c complete_walk 886 DEFAULT] complete_walk
16:49:15.164806: [fs/namei.c may_open 3250 DEFAULT] 
16:49:15.164807: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.164808: [fs/namei.c path_init 2364 DEFAULT] path_init
16:49:15.164810: [fs/namei.c path_lookupat 2486 DEFAULT] path_lookupat
16:49:15.164811: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.164813: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.164818: [fs/namei.c link_path_walk 2260 DEFAULT] name: /run/systemd/journal/flushed
16:49:15.164822: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.164825: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.164829: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.164833: [fs/namei.c link_path_walk 2260 DEFAULT] name: (efault)
16:49:15.164837: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.164841: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.164844: [mm/slub.c __slab_alloc 3613 DEFAULT] 
16:49:15.164845: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.164846: [fs/file.c fd_install 612 DEFAULT] 
16:49:15.164848: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.164849: [fs/namei.c putname 262 DEFAULT] name: /etc/machine-id
16:49:15.164850: [include/linux/fs.h __sb_start_write 1666 DEFAULT] __sb_start_write
16:49:15.164852: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.164853: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.164854: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.164856: [fs/namei.c putname 262 DEFAULT] name: /run/systemd/journal/flushed
16:49:15.164859: [mm/slub.c __slab_alloc 3613 DEFAULT] 
16:49:15.164863: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.164866: [fs/namei.c path_init 2364 DEFAULT] path_init
16:49:15.164868: [fs/namei.c path_lookupat 2486 DEFAULT] path_lookupat
16:49:15.164871: [include/linux/fs.h __sb_start_write 1666 DEFAULT] __sb_start_write
16:49:15.164875: [fs/namei.c link_path_walk 2260 DEFAULT] name: /run/systemd/journal/flushed
16:49:15.164878: [mm/slub.c __slab_alloc 3613 DEFAULT] 
16:49:15.164882: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.164886: [fs/namei.c link_path_walk 2260 DEFAULT] name: (efault)
16:49:15.164889: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.164891: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.164893: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.164895: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.164900: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.164905: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.164908: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.164913: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.164917: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.164919: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.164920: [fs/namei.c putname 262 DEFAULT] name: /run/systemd/journal/flushed
16:49:15.165199: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.165206: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.165211: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.165213: [fs/namei.c path_init 2364 DEFAULT] path_init
16:49:15.165215: [fs/namei.c path_lookupat 2486 DEFAULT] path_lookupat
16:49:15.165216: [fs/namei.c link_path_walk 2260 DEFAULT] name: /run/systemd/journal/flushed
16:49:15.165217: [mm/slub.c __slab_alloc 3613 DEFAULT] 
16:49:15.165219: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.165220: [fs/namei.c link_path_walk 2260 DEFAULT] name: (efault)
16:49:15.165221: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.165223: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.165224: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.165225: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.165227: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.165228: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.165230: [fs/namei.c putname 262 DEFAULT] name: /run/systemd/journal/flushed
16:49:15.165231: [include/linux/fs.h __sb_start_write 1666 DEFAULT] __sb_start_write
16:49:15.165233: [fs/namei.c path_init 2364 DEFAULT] path_init
16:49:15.165234: [fs/namei.c path_lookupat 2486 DEFAULT] path_lookupat
16:49:15.165235: [fs/namei.c link_path_walk 2260 DEFAULT] name: /run/systemd/journal/flushed
16:49:15.165237: [mm/slub.c __slab_alloc 3613 DEFAULT] 
16:49:15.165241: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.165244: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.165249: [fs/namei.c link_path_walk 2260 DEFAULT] name: (efault)
16:49:15.165254: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.165256: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.165258: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.165318: [include/linux/fs.h __sb_start_write 1666 DEFAULT] __sb_start_write
16:49:15.165324: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.165327: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.165330: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.165335: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.165339: [fs/namei.c putname 262 DEFAULT] name: /run/systemd/journal/flushed
16:49:15.165342: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.165344: [fs/namei.c path_init 2364 DEFAULT] path_init
16:49:15.165345: [fs/namei.c path_lookupat 2486 DEFAULT] path_lookupat
16:49:15.165346: [fs/namei.c link_path_walk 2260 DEFAULT] name: /run/systemd/journal/flushed
16:49:15.165347: [mm/slub.c __slab_alloc 3613 DEFAULT] 
16:49:15.165349: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.165350: [fs/namei.c link_path_walk 2260 DEFAULT] name: (efault)
16:49:15.165351: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.165352: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.165355: [include/linux/fs.h __sb_start_write 1666 DEFAULT] __sb_start_write
16:49:15.165358: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.165362: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.165364: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.165365: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.165367: [fs/namei.c putname 262 DEFAULT] name: /run/systemd/journal/flushed
16:49:15.165371: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.165374: [include/linux/fs.h __sb_start_write 1666 DEFAULT] __sb_start_write
16:49:15.165378: [fs/namei.c path_init 2364 DEFAULT] path_init
16:49:15.165381: [fs/namei.c path_lookupat 2486 DEFAULT] path_lookupat
16:49:15.165385: [fs/namei.c link_path_walk 2260 DEFAULT] name: /run/systemd/journal/flushed
16:49:15.165389: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.165391: [mm/slub.c __slab_alloc 3613 DEFAULT] 
16:49:15.165393: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.165394: [fs/namei.c link_path_walk 2260 DEFAULT] name: (efault)
16:49:15.165395: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.165397: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.165398: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.165399: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.165400: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.165401: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.165404: [fs/namei.c putname 262 DEFAULT] name: /run/systemd/journal/flushed
16:49:15.165408: [fs/namei.c path_init 2364 DEFAULT] path_init
16:49:15.165411: [fs/namei.c path_lookupat 2486 DEFAULT] path_lookupat
16:49:15.165413: [include/linux/fs.h __sb_start_write 1666 DEFAULT] __sb_start_write
16:49:15.165462: [fs/namei.c link_path_walk 2260 DEFAULT] name: /run/systemd/journal/flushed
16:49:15.165466: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.165467: [fs/namei.c link_path_walk 2260 DEFAULT] name: (efault)
16:49:15.165469: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.165470: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.165472: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.165473: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.165474: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.165476: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.165477: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.165480: [fs/namei.c putname 262 DEFAULT] name: /run/systemd/journal/flushed
16:49:15.165483: [include/linux/fs.h __sb_start_write 1666 DEFAULT] __sb_start_write
16:49:15.165487: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.165490: [include/linux/fs.h __sb_start_write 1666 DEFAULT] __sb_start_write
16:49:15.165494: [fs/namei.c path_init 2364 DEFAULT] path_init
16:49:15.165497: [fs/namei.c path_lookupat 2486 DEFAULT] path_lookupat
16:49:15.165501: [fs/namei.c link_path_walk 2260 DEFAULT] name: /run/systemd/journal/flushed
16:49:15.165505: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.165508: [fs/namei.c link_path_walk 2260 DEFAULT] name: (efault)
16:49:15.165510: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.165511: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.165513: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.165515: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.165516: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.165517: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.165519: [include/linux/fs.h __sb_start_write 1666 DEFAULT] __sb_start_write
16:49:15.165520: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.165523: [fs/namei.c putname 262 DEFAULT] name: /run/systemd/journal/flushed
16:49:15.165527: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.165530: [fs/namei.c path_init 2364 DEFAULT] path_init
16:49:15.165531: [fs/namei.c path_lookupat 2486 DEFAULT] path_lookupat
16:49:15.165532: [fs/namei.c link_path_walk 2260 DEFAULT] name: /run/systemd/journal/flushed
16:49:15.165535: [mm/slub.c __slab_alloc 3613 DEFAULT] 
16:49:15.165539: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.165542: [fs/namei.c link_path_walk 2260 DEFAULT] name: (efault)
16:49:15.165546: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.165549: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.165553: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.165606: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.165609: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.165611: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.165612: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.165614: [fs/namei.c putname 262 DEFAULT] name: /run/systemd/journal/flushed
16:49:15.165615: [fs/namei.c path_init 2364 DEFAULT] path_init
16:49:15.165617: [include/linux/fs.h __sb_start_write 1666 DEFAULT] __sb_start_write
16:49:15.165619: [fs/namei.c path_lookupat 2486 DEFAULT] path_lookupat
16:49:15.165620: [fs/namei.c link_path_walk 2260 DEFAULT] name: /run/systemd/journal/flushed
16:49:15.165878: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.165906: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.165911: [include/linux/fs.h __sb_start_write 1666 DEFAULT] __sb_start_write
16:49:15.165913: [fs/namei.c link_path_walk 2260 DEFAULT] name: (efault)
16:49:15.165914: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.165916: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.165917: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.165919: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.165922: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.165926: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.165930: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.165934: [fs/namei.c putname 262 DEFAULT] name: /run/systemd/journal/flushed
16:49:15.165940: [fs/open.c __do_sys_openat 1532 DEFAULT] count: 656837
16:49:15.165942: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.165944: [fs/open.c do_sys_openat2 1437 DEFAULT] tmp->name: /etc/machine-id
16:49:15.165946: [fs/namei.c path_init 2364 DEFAULT] path_init
16:49:15.165947: [fs/file.c alloc_fd 505 DEFAULT] allocate a file descriptor, mark it busy. tgid: 2661, pid: 2661
16:49:15.165948: [fs/namei.c do_filp_open 3841 DEFAULT] pathname: /etc/machine-id
16:49:15.165950: [fs/namei.c path_lookupat 2486 DEFAULT] path_lookupat
16:49:15.165953: [fs/namei.c link_path_walk 2260 DEFAULT] name: /run/systemd/journal/flushed
16:49:15.165956: [fs/namei.c path_openat 3800 DEFAULT] alloc_empty_file
16:49:15.165960: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.165963: [include/linux/fs.h __sb_start_write 1666 DEFAULT] __sb_start_write
16:49:15.165967: [fs/file_table.c alloc_empty_file 192 DEFAULT] alloc_empty_file
16:49:15.165970: [fs/file_table.c init_file 152 DEFAULT] security_file_alloc
16:49:15.165974: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.165978: [fs/namei.c path_init 2364 DEFAULT] path_init
16:49:15.165981: [fs/namei.c link_path_walk 2260 DEFAULT] name: (efault)
16:49:15.165985: [fs/namei.c link_path_walk 2260 DEFAULT] name: /etc/machine-id
16:49:15.165986: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.165987: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.165989: [fs/namei.c complete_walk 886 DEFAULT] complete_walk
16:49:15.165990: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.165992: [fs/namei.c may_open 3250 DEFAULT] 
16:49:15.165993: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.165994: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.165999: message repeated 2 times: [ [fs/dcache.c dput 838 DEFAULT] ]
16:49:15.166004: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.166013: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.166017: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.166021: [fs/namei.c putname 262 DEFAULT] name: /run/systemd/journal/flushed
16:49:15.166026: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.166029: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.166033: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.166037: [include/linux/fs.h __sb_start_write 1666 DEFAULT] __sb_start_write
16:49:15.166038: [fs/file.c fd_install 612 DEFAULT] 
16:49:15.166040: [fs/namei.c putname 262 DEFAULT] name: /etc/machine-id
16:49:15.166041: [fs/namei.c path_init 2364 DEFAULT] path_init
16:49:15.166042: [fs/namei.c path_lookupat 2486 DEFAULT] path_lookupat
16:49:15.166044: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.166045: [fs/namei.c link_path_walk 2260 DEFAULT] name: /run/systemd/journal/flushed
16:49:15.166046: [mm/slub.c __slab_alloc 3613 DEFAULT] 
16:49:15.166047: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.166048: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.166051: [fs/namei.c link_path_walk 2260 DEFAULT] name: (efault)
16:49:15.166054: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.166057: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.166060: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.166063: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.166066: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.166068: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.166069: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.166070: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.166072: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.166074: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.166075: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.166076: [fs/namei.c putname 262 DEFAULT] name: /run/systemd/journal/flushed
16:49:15.166078: [include/linux/fs.h __sb_start_write 1666 DEFAULT] __sb_start_write
16:49:15.166082: [fs/namei.c path_init 2364 DEFAULT] path_init
16:49:15.166084: [fs/namei.c path_lookupat 2486 DEFAULT] path_lookupat
16:49:15.166087: [fs/namei.c link_path_walk 2260 DEFAULT] name: /run/systemd/journal/flushed
16:49:15.166161: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.166164: [fs/namei.c link_path_walk 2260 DEFAULT] name: (efault)
16:49:15.166165: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.166167: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.166170: message repeated 2 times: [ [fs/dcache.c dput 838 DEFAULT] ]
16:49:15.166172: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.166176: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.166178: [include/linux/fs.h __sb_start_write 1666 DEFAULT] __sb_start_write
16:49:15.166179: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.166181: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.166183: [fs/namei.c putname 262 DEFAULT] name: /run/systemd/journal/flushed
16:49:15.166184: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.166186: [fs/namei.c path_init 2364 DEFAULT] path_init
16:49:15.166187: [fs/namei.c path_lookupat 2486 DEFAULT] path_lookupat
16:49:15.166189: [fs/namei.c link_path_walk 2260 DEFAULT] name: /run/systemd/journal/flushed
16:49:15.166190: [mm/slub.c __slab_alloc 3613 DEFAULT] 
16:49:15.166191: [include/linux/fs.h __sb_start_write 1666 DEFAULT] __sb_start_write
16:49:15.166193: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.166194: [fs/namei.c link_path_walk 2260 DEFAULT] name: (efault)
16:49:15.166196: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.166197: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.166200: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.166204: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.166207: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.166210: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.166214: [fs/namei.c putname 262 DEFAULT] name: /run/systemd/journal/flushed
16:49:15.166217: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.166221: [include/linux/fs.h __sb_start_write 1666 DEFAULT] __sb_start_write
16:49:15.166224: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.166228: [fs/namei.c path_init 2364 DEFAULT] path_init
16:49:15.166231: [fs/namei.c path_lookupat 2486 DEFAULT] path_lookupat
16:49:15.166235: [fs/namei.c link_path_walk 2260 DEFAULT] name: /run/systemd/journal/flushed
16:49:15.166238: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.166239: [fs/namei.c link_path_walk 2260 DEFAULT] name: (efault)
16:49:15.166240: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.166242: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.166243: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.166244: [include/linux/fs.h __sb_start_write 1666 DEFAULT] __sb_start_write
16:49:15.166246: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.166247: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.166248: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.166249: [fs/namei.c putname 262 DEFAULT] name: /run/systemd/journal/flushed
16:49:15.166253: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.166257: [include/linux/fs.h __sb_start_write 1666 DEFAULT] __sb_start_write
16:49:15.166259: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.166261: [fs/namei.c path_init 2364 DEFAULT] path_init
16:49:15.166264: [fs/namei.c path_lookupat 2486 DEFAULT] path_lookupat
16:49:15.166268: [fs/namei.c link_path_walk 2260 DEFAULT] name: /run/systemd/journal/flushed
16:49:15.166271: [mm/slub.c __slab_alloc 3613 DEFAULT] 
16:49:15.166275: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.166376: [fs/namei.c link_path_walk 2260 DEFAULT] name: (efault)
16:49:15.166406: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.166409: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.166410: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.166412: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.166414: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.166415: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.166417: [fs/namei.c putname 262 DEFAULT] name: /run/systemd/journal/flushed
16:49:15.166418: [fs/namei.c path_init 2364 DEFAULT] path_init
16:49:15.166420: [include/linux/fs.h __sb_start_write 1666 DEFAULT] __sb_start_write
16:49:15.166421: [fs/namei.c path_lookupat 2486 DEFAULT] path_lookupat
16:49:15.166423: [fs/namei.c link_path_walk 2260 DEFAULT] name: /run/systemd/journal/flushed
16:49:15.166424: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.166426: [include/linux/fs.h __sb_start_write 1666 DEFAULT] __sb_start_write
16:49:15.166427: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.166428: [fs/namei.c link_path_walk 2260 DEFAULT] name: (efault)
16:49:15.166430: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.166431: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.166433: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.166434: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.166435: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.166437: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.166438: [fs/namei.c putname 262 DEFAULT] name: /run/systemd/journal/flushed
16:49:15.166440: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.166441: [include/linux/fs.h __sb_start_write 1666 DEFAULT] __sb_start_write
16:49:15.166442: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.166444: [include/linux/fs.h __sb_start_write 1666 DEFAULT] __sb_start_write
16:49:15.166448: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.166451: [include/linux/fs.h __sb_start_write 1666 DEFAULT] __sb_start_write
16:49:15.166455: [fs/namei.c path_init 2364 DEFAULT] path_init
16:49:15.166459: [fs/namei.c path_lookupat 2486 DEFAULT] path_lookupat
16:49:15.166462: [fs/namei.c link_path_walk 2260 DEFAULT] name: /run/systemd/journal/flushed
16:49:15.166466: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.166469: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.166474: [fs/namei.c link_path_walk 2260 DEFAULT] name: (efault)
16:49:15.166476: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.166477: [include/linux/fs.h __sb_start_write 1666 DEFAULT] __sb_start_write
16:49:15.166478: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.166480: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.166481: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.166482: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.166483: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.166485: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.166533: [fs/namei.c putname 262 DEFAULT] name: /run/systemd/journal/flushed
16:49:15.166538: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.166542: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.166547: [fs/namei.c path_init 2364 DEFAULT] path_init
16:49:15.166550: [fs/namei.c path_lookupat 2486 DEFAULT] path_lookupat
16:49:15.166552: [fs/namei.c link_path_walk 2260 DEFAULT] name: /run/systemd/journal/flushed
16:49:15.166554: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.166555: [fs/namei.c link_path_walk 2260 DEFAULT] name: (efault)
16:49:15.166556: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.166557: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.166559: [include/linux/fs.h __sb_start_write 1666 DEFAULT] __sb_start_write
16:49:15.166560: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.166561: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.166563: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.166567: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.166570: [fs/namei.c putname 262 DEFAULT] name: /run/systemd/journal/flushed
16:49:15.166573: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.166576: [include/linux/fs.h __sb_start_write 1666 DEFAULT] __sb_start_write
16:49:15.166579: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.166621: [include/linux/fs.h __sb_start_write 1666 DEFAULT] __sb_start_write
16:49:15.166623: [fs/namei.c path_init 2364 DEFAULT] path_init
16:49:15.166625: [fs/namei.c path_lookupat 2486 DEFAULT] path_lookupat
16:49:15.166626: [fs/namei.c link_path_walk 2260 DEFAULT] name: /run/systemd/journal/flushed
16:49:15.166628: [mm/slub.c __slab_alloc 3613 DEFAULT] 
16:49:15.166629: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.166630: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.166632: [fs/namei.c link_path_walk 2260 DEFAULT] name: (efault)
16:49:15.166634: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.166636: [include/linux/fs.h __sb_start_write 1666 DEFAULT] __sb_start_write
16:49:15.166637: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.166639: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.166640: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.166641: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.166643: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.166645: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.167762: [fs/namei.c putname 262 DEFAULT] name: /run/systemd/journal/flushed
16:49:15.167813: [fs/namei.c path_init 2364 DEFAULT] path_init
16:49:15.167817: [fs/namei.c path_lookupat 2486 DEFAULT] path_lookupat
16:49:15.167819: [fs/namei.c link_path_walk 2260 DEFAULT] name: /run/systemd/journal/flushed
16:49:15.167820: [mm/slub.c __slab_alloc 3613 DEFAULT] 
16:49:15.167821: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.167822: [fs/namei.c link_path_walk 2260 DEFAULT] name: (efault)
16:49:15.167824: [include/linux/fs.h __sb_start_write 1666 DEFAULT] __sb_start_write
16:49:15.167826: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.167828: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.167829: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.167830: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.167832: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.167833: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.167834: [fs/namei.c putname 262 DEFAULT] name: /run/systemd/journal/flushed
16:49:15.167836: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.167837: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.167842: [include/linux/fs.h __sb_start_write 1666 DEFAULT] __sb_start_write
16:49:15.167843: [fs/namei.c path_init 2364 DEFAULT] path_init
16:49:15.167845: [mm/slub.c __slab_alloc 3613 DEFAULT] 
16:49:15.167846: [fs/namei.c path_lookupat 2486 DEFAULT] path_lookupat
16:49:15.167847: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.167849: [fs/namei.c link_path_walk 2260 DEFAULT] name: /run/systemd/journal/flushed
16:49:15.167850: [include/linux/fs.h __sb_start_write 1666 DEFAULT] __sb_start_write
16:49:15.167851: [mm/slub.c __slab_alloc 3613 DEFAULT] 
16:49:15.167852: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.167854: [fs/namei.c link_path_walk 2260 DEFAULT] name: (efault)
16:49:15.167855: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.167856: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.167858: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.167860: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.167861: [include/linux/fs.h __sb_start_write 1666 DEFAULT] __sb_start_write
16:49:15.167862: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.167864: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.167865: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.167866: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.167868: [fs/namei.c putname 262 DEFAULT] name: /run/systemd/journal/flushed
16:49:15.167869: [include/linux/fs.h __sb_start_write 1666 DEFAULT] __sb_start_write
16:49:15.167871: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.167872: [include/linux/fs.h __sb_start_write 1666 DEFAULT] __sb_start_write
16:49:15.167873: [fs/namei.c path_init 2364 DEFAULT] path_init
16:49:15.167874: [fs/namei.c path_lookupat 2486 DEFAULT] path_lookupat
16:49:15.167876: [fs/namei.c link_path_walk 2260 DEFAULT] name: /run/systemd/journal/flushed
16:49:15.167877: [mm/slub.c __slab_alloc 3613 DEFAULT] 
16:49:15.167879: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.167880: [fs/namei.c link_path_walk 2260 DEFAULT] name: (efault)
16:49:15.167881: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.167882: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.167884: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.167885: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.167886: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.167887: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.167888: [fs/namei.c putname 262 DEFAULT] name: /run/systemd/journal/flushed
16:49:15.167889: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.167891: [fs/namei.c path_init 2364 DEFAULT] path_init
16:49:15.167892: [fs/namei.c path_lookupat 2486 DEFAULT] path_lookupat
16:49:15.167893: [fs/namei.c link_path_walk 2260 DEFAULT] name: /run/systemd/journal/flushed
16:49:15.167894: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.167896: [fs/namei.c link_path_walk 2260 DEFAULT] name: (efault)
16:49:15.167897: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.167898: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.167899: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.167901: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.167902: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.167903: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.167905: [fs/namei.c putname 262 DEFAULT] name: /run/systemd/journal/flushed
16:49:15.167906: [fs/namei.c path_init 2364 DEFAULT] path_init
16:49:15.167907: [fs/namei.c path_lookupat 2486 DEFAULT] path_lookupat
16:49:15.167909: [fs/namei.c link_path_walk 2260 DEFAULT] name: /run/systemd/journal/flushed
16:49:15.167912: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.167914: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.167917: [fs/namei.c link_path_walk 2260 DEFAULT] name: (efault)
16:49:15.167919: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.167920: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.167922: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.167924: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.167926: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.167928: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.167930: [fs/namei.c putname 262 DEFAULT] name: /run/systemd/journal/flushed
16:49:15.167933: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.167934: [fs/namei.c path_init 2364 DEFAULT] path_init
16:49:15.167936: [fs/namei.c path_lookupat 2486 DEFAULT] path_lookupat
16:49:15.167937: [fs/namei.c link_path_walk 2260 DEFAULT] name: /run/systemd/journal/flushed
16:49:15.167939: [mm/slub.c __slab_alloc 3613 DEFAULT] 
16:49:15.167941: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.167943: [fs/namei.c link_path_walk 2260 DEFAULT] name: (efault)
16:49:15.167945: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.167947: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.167948: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.167950: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.167952: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.167953: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.167954: [fs/namei.c putname 262 DEFAULT] name: /run/systemd/journal/flushed
16:49:15.167956: [fs/namei.c path_init 2364 DEFAULT] path_init
16:49:15.167958: [fs/namei.c path_lookupat 2486 DEFAULT] path_lookupat
16:49:15.167959: [fs/namei.c link_path_walk 2260 DEFAULT] name: /run/systemd/journal/flushed
16:49:15.167961: [mm/slub.c __slab_alloc 3613 DEFAULT] 
16:49:15.167964: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.167965: [fs/namei.c link_path_walk 2260 DEFAULT] name: (efault)
16:49:15.167967: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.167968: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.167970: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.168035: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.168039: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.168041: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.168042: [fs/namei.c putname 262 DEFAULT] name: /run/systemd/journal/flushed
16:49:15.168044: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.168045: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.168048: [fs/namei.c path_init 2364 DEFAULT] path_init
16:49:15.168049: [fs/namei.c path_lookupat 2486 DEFAULT] path_lookupat
16:49:15.168051: [fs/namei.c link_path_walk 2260 DEFAULT] name: /run/systemd/journal/flushed
16:49:15.168052: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.168053: [fs/namei.c link_path_walk 2260 DEFAULT] name: (efault)
16:49:15.168055: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.168056: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.168057: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.168058: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.168060: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.168061: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.168063: [fs/namei.c putname 262 DEFAULT] name: /run/systemd/journal/flushed
16:49:15.168064: [fs/namei.c path_init 2364 DEFAULT] path_init
16:49:15.168066: [fs/namei.c path_lookupat 2486 DEFAULT] path_lookupat
16:49:15.168067: [fs/namei.c link_path_walk 2260 DEFAULT] name: /run/systemd/journal/flushed
16:49:15.168068: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.168069: [fs/namei.c link_path_walk 2260 DEFAULT] name: (efault)
16:49:15.168247: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.168253: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.168255: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.168258: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.168261: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.168262: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.168264: [fs/namei.c putname 262 DEFAULT] name: /run/systemd/journal/flushed
16:49:15.168266: [fs/namei.c path_init 2364 DEFAULT] path_init
16:49:15.168268: [fs/namei.c path_lookupat 2486 DEFAULT] path_lookupat
16:49:15.168269: [fs/namei.c link_path_walk 2260 DEFAULT] name: /run/systemd/journal/flushed
16:49:15.168271: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.168272: [fs/namei.c link_path_walk 2260 DEFAULT] name: (efault)
16:49:15.168273: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.168274: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.168277: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.168279: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.168280: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.168281: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.168283: [fs/namei.c putname 262 DEFAULT] name: /run/systemd/journal/flushed
16:49:15.168284: [fs/namei.c path_init 2364 DEFAULT] path_init
16:49:15.168287: [fs/namei.c path_lookupat 2486 DEFAULT] path_lookupat
16:49:15.168288: [fs/namei.c link_path_walk 2260 DEFAULT] name: /run/systemd/journal/flushed
16:49:15.168290: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.168291: [fs/namei.c link_path_walk 2260 DEFAULT] name: (efault)
16:49:15.168333: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.168336: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.168338: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.168339: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.168340: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.168342: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.168343: [fs/namei.c putname 262 DEFAULT] name: /run/systemd/journal/flushed
16:49:15.168345: [fs/namei.c path_init 2364 DEFAULT] path_init
16:49:15.168346: [fs/namei.c path_lookupat 2486 DEFAULT] path_lookupat
16:49:15.168348: [fs/namei.c link_path_walk 2260 DEFAULT] name: /run/systemd/journal/flushed
16:49:15.168350: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.168351: [fs/namei.c link_path_walk 2260 DEFAULT] name: (efault)
16:49:15.168354: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.168355: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.168356: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.168358: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.168360: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.168361: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.168363: [fs/namei.c putname 262 DEFAULT] name: /run/systemd/journal/flushed
16:49:15.168365: [fs/namei.c path_init 2364 DEFAULT] path_init
16:49:15.168367: [fs/namei.c path_lookupat 2486 DEFAULT] path_lookupat
16:49:15.168368: [fs/namei.c link_path_walk 2260 DEFAULT] name: /run/systemd/journal/flushed
16:49:15.168370: [include/linux/fs.h __sb_start_write 1666 DEFAULT] __sb_start_write
16:49:15.168371: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.168372: [fs/namei.c link_path_walk 2260 DEFAULT] name: (efault)
16:49:15.168374: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.168375: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.168376: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.168377: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.168379: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.168380: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.168496: [fs/namei.c putname 262 DEFAULT] name: /run/systemd/journal/flushed
16:49:15.168499: [fs/namei.c path_init 2364 DEFAULT] path_init
16:49:15.168501: [fs/namei.c path_lookupat 2486 DEFAULT] path_lookupat
16:49:15.168502: [fs/namei.c link_path_walk 2260 DEFAULT] name: /run/systemd/journal/flushed
16:49:15.168503: [mm/slub.c __slab_alloc 3613 DEFAULT] 
16:49:15.168504: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.168506: [fs/namei.c link_path_walk 2260 DEFAULT] name: (efault)
16:49:15.168507: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.168508: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.168509: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.168511: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.168512: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.168513: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.168514: [fs/namei.c putname 262 DEFAULT] name: /run/systemd/journal/flushed
16:49:15.168515: [fs/namei.c path_init 2364 DEFAULT] path_init
16:49:15.168517: [fs/namei.c path_lookupat 2486 DEFAULT] path_lookupat
16:49:15.168518: [fs/namei.c link_path_walk 2260 DEFAULT] name: /run/systemd/journal/flushed
16:49:15.168520: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.168521: [fs/namei.c link_path_walk 2260 DEFAULT] name: (efault)
16:49:15.168522: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.168523: [mm/slub.c __slab_alloc 3613 DEFAULT] 
16:49:15.168524: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.168525: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.168526: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.168528: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.168529: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.168530: [fs/namei.c putname 262 DEFAULT] name: /run/systemd/journal/flushed
16:49:15.168531: [fs/namei.c path_init 2364 DEFAULT] path_init
16:49:15.168532: [fs/namei.c path_lookupat 2486 DEFAULT] path_lookupat
16:49:15.168534: [fs/namei.c link_path_walk 2260 DEFAULT] name: /run/systemd/journal/flushed
16:49:15.168535: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.168536: [fs/namei.c link_path_walk 2260 DEFAULT] name: (efault)
16:49:15.168538: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.168539: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.168540: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.168541: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.168542: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.168543: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.168544: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.168545: [fs/namei.c putname 262 DEFAULT] name: /run/systemd/journal/flushed
16:49:15.168547: [include/linux/fs.h __sb_start_write 1666 DEFAULT] __sb_start_write
16:49:15.168548: [fs/namei.c path_init 2364 DEFAULT] path_init
16:49:15.168550: [fs/namei.c path_lookupat 2486 DEFAULT] path_lookupat
16:49:15.168551: [fs/namei.c link_path_walk 2260 DEFAULT] name: /run/systemd/journal/flushed
16:49:15.168552: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.168554: [fs/namei.c link_path_walk 2260 DEFAULT] name: (efault)
16:49:15.168555: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.168556: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.168557: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.168558: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.168560: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.168561: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.168562: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.168631: [fs/namei.c putname 262 DEFAULT] name: /run/systemd/journal/flushed
16:49:15.168634: [include/linux/fs.h __sb_start_write 1666 DEFAULT] __sb_start_write
16:49:15.168636: [fs/namei.c path_init 2364 DEFAULT] path_init
16:49:15.168637: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.168638: [fs/namei.c path_lookupat 2486 DEFAULT] path_lookupat
16:49:15.168639: [fs/namei.c link_path_walk 2260 DEFAULT] name: /run/systemd/journal/flushed
16:49:15.168641: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.168642: [include/linux/fs.h __sb_start_write 1666 DEFAULT] __sb_start_write
16:49:15.168644: [fs/namei.c link_path_walk 2260 DEFAULT] name: (efault)
16:49:15.168645: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.168646: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.168648: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.168649: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.168650: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.168651: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.168653: [fs/namei.c putname 262 DEFAULT] name: /run/systemd/journal/flushed
16:49:15.168654: [fs/namei.c path_init 2364 DEFAULT] path_init
16:49:15.168655: [fs/namei.c path_lookupat 2486 DEFAULT] path_lookupat
16:49:15.168657: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.168658: [fs/namei.c link_path_walk 2260 DEFAULT] name: /run/systemd/journal/flushed
16:49:15.168659: [mm/slub.c __slab_alloc 3613 DEFAULT] 
16:49:15.168661: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.168662: [fs/namei.c link_path_walk 2260 DEFAULT] name: (efault)
16:49:15.168663: [include/linux/fs.h __sb_start_write 1666 DEFAULT] __sb_start_write
16:49:15.168664: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.168665: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.168667: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.168668: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.168670: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.168787: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.168902: [fs/namei.c putname 262 DEFAULT] name: /run/systemd/journal/flushed
16:49:15.168906: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.168907: [fs/namei.c path_init 2364 DEFAULT] path_init
16:49:15.168908: [include/linux/fs.h __sb_start_write 1666 DEFAULT] __sb_start_write
16:49:15.168910: [fs/namei.c path_lookupat 2486 DEFAULT] path_lookupat
16:49:15.168911: [fs/namei.c link_path_walk 2260 DEFAULT] name: /run/systemd/journal/flushed
16:49:15.168912: [mm/slub.c __slab_alloc 3613 DEFAULT] 
16:49:15.168916: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.168917: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.168923: [fs/namei.c link_path_walk 2260 DEFAULT] name: (efault)
16:49:15.168924: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.168926: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.168927: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.168929: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.168930: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.168932: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.168933: [fs/namei.c putname 262 DEFAULT] name: /run/systemd/journal/flushed
16:49:15.168934: [fs/namei.c path_init 2364 DEFAULT] path_init
16:49:15.168936: [fs/namei.c path_lookupat 2486 DEFAULT] path_lookupat
16:49:15.168937: [fs/namei.c link_path_walk 2260 DEFAULT] name: /run/systemd/journal/flushed
16:49:15.168939: [mm/slub.c __slab_alloc 3613 DEFAULT] 
16:49:15.168940: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.168941: [fs/namei.c link_path_walk 2260 DEFAULT] name: (efault)
16:49:15.168943: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.168944: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.168945: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.168947: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.168948: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.168950: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.168951: [fs/namei.c putname 262 DEFAULT] name: /run/systemd/journal/flushed
16:49:15.168952: [fs/namei.c path_init 2364 DEFAULT] path_init
16:49:15.168953: [fs/namei.c path_lookupat 2486 DEFAULT] path_lookupat
16:49:15.168955: [fs/namei.c link_path_walk 2260 DEFAULT] name: /run/systemd/journal/flushed
16:49:15.168956: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.168957: [fs/namei.c link_path_walk 2260 DEFAULT] name: (efault)
16:49:15.168959: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.168960: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.168961: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.168962: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.168964: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.168965: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.168966: [fs/namei.c putname 262 DEFAULT] name: /run/systemd/journal/flushed
16:49:15.168968: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.168969: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.168970: [fs/namei.c path_init 2364 DEFAULT] path_init
16:49:15.168972: [fs/namei.c path_lookupat 2486 DEFAULT] path_lookupat
16:49:15.168974: [fs/namei.c link_path_walk 2260 DEFAULT] name: /run/systemd/journal/flushed
16:49:15.168975: [mm/slub.c __slab_alloc 3613 DEFAULT] 
16:49:15.168977: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.168979: [fs/namei.c link_path_walk 2260 DEFAULT] name: (efault)
16:49:15.169066: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.169070: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.169072: [include/linux/fs.h __sb_start_write 1666 DEFAULT] __sb_start_write
16:49:15.169073: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.169075: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.169076: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.169077: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.169079: [fs/namei.c putname 262 DEFAULT] name: /run/systemd/journal/flushed
16:49:15.169080: [fs/namei.c path_init 2364 DEFAULT] path_init
16:49:15.169082: [fs/namei.c path_lookupat 2486 DEFAULT] path_lookupat
16:49:15.169083: [fs/namei.c link_path_walk 2260 DEFAULT] name: /run/systemd/journal/flushed
16:49:15.169084: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.169086: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.169089: [fs/namei.c link_path_walk 2260 DEFAULT] name: (efault)
16:49:15.169090: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.169142: [include/linux/fs.h __sb_start_write 1666 DEFAULT] __sb_start_write
16:49:15.169146: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.169148: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.169149: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.169151: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.169152: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.169153: [fs/namei.c putname 262 DEFAULT] name: /run/systemd/journal/flushed
16:49:15.169155: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.169156: [include/linux/fs.h __sb_start_write 1666 DEFAULT] __sb_start_write
16:49:15.169158: [fs/namei.c path_init 2364 DEFAULT] path_init
16:49:15.169160: [fs/namei.c path_lookupat 2486 DEFAULT] path_lookupat
16:49:15.169161: [fs/namei.c link_path_walk 2260 DEFAULT] name: /run/systemd/journal/flushed
16:49:15.169162: [mm/slub.c __slab_alloc 3613 DEFAULT] 
16:49:15.169164: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.169165: [fs/namei.c link_path_walk 2260 DEFAULT] name: (efault)
16:49:15.169166: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.169167: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.169169: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.169170: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.169171: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.169172: [include/linux/fs.h __sb_start_write 1666 DEFAULT] __sb_start_write
16:49:15.169174: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.169175: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.169177: [fs/namei.c putname 262 DEFAULT] name: /run/systemd/journal/flushed
16:49:15.169219: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.169222: [include/linux/fs.h __sb_start_write 1666 DEFAULT] __sb_start_write
16:49:15.169224: [fs/namei.c path_init 2364 DEFAULT] path_init
16:49:15.169225: [fs/namei.c path_lookupat 2486 DEFAULT] path_lookupat
16:49:15.169226: [fs/namei.c link_path_walk 2260 DEFAULT] name: /run/systemd/journal/flushed
16:49:15.169227: [mm/slub.c __slab_alloc 3613 DEFAULT] 
16:49:15.169228: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.169229: [fs/namei.c link_path_walk 2260 DEFAULT] name: (efault)
16:49:15.169231: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.169232: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.169233: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.169235: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.169236: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.169237: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.169239: [fs/namei.c putname 262 DEFAULT] name: /run/systemd/journal/flushed
16:49:15.169240: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.169287: [include/linux/fs.h __sb_start_write 1666 DEFAULT] __sb_start_write
16:49:15.169397: [fs/namei.c path_init 2364 DEFAULT] path_init
16:49:15.169400: [fs/namei.c path_lookupat 2486 DEFAULT] path_lookupat
16:49:15.169402: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.169403: [fs/namei.c link_path_walk 2260 DEFAULT] name: /run/systemd/journal/flushed
16:49:15.169404: [mm/slub.c __slab_alloc 3613 DEFAULT] 
16:49:15.169405: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.169406: [include/linux/fs.h __sb_start_write 1666 DEFAULT] __sb_start_write
16:49:15.169407: [fs/namei.c link_path_walk 2260 DEFAULT] name: (efault)
16:49:15.169408: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.169410: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.169411: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.169412: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.169413: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.169414: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.169417: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.169418: [fs/namei.c putname 262 DEFAULT] name: /run/systemd/journal/flushed
16:49:15.169420: [include/linux/fs.h __sb_start_write 1666 DEFAULT] __sb_start_write
16:49:15.169543: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.169546: [fs/namei.c path_init 2364 DEFAULT] path_init
16:49:15.169547: [fs/namei.c path_lookupat 2486 DEFAULT] path_lookupat
16:49:15.169548: [fs/namei.c link_path_walk 2260 DEFAULT] name: /run/systemd/journal/flushed
16:49:15.169550: [mm/slub.c __slab_alloc 3613 DEFAULT] 
16:49:15.169551: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.169552: [fs/namei.c link_path_walk 2260 DEFAULT] name: (efault)
16:49:15.169553: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.169555: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.169556: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.169557: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.169558: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.169559: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.169560: [fs/namei.c putname 262 DEFAULT] name: /run/systemd/journal/flushed
16:49:15.169561: [fs/namei.c path_init 2364 DEFAULT] path_init
16:49:15.169563: [fs/namei.c path_lookupat 2486 DEFAULT] path_lookupat
16:49:15.169564: [fs/namei.c link_path_walk 2260 DEFAULT] name: /run/systemd/journal/flushed
16:49:15.169565: [mm/slub.c __slab_alloc 3613 DEFAULT] 
16:49:15.169566: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.169567: [fs/namei.c link_path_walk 2260 DEFAULT] name: (efault)
16:49:15.169568: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.169569: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.169570: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.169572: [fs/namei.c path_put 566 DEFAULT] 
16:49:15.169573: [fs/dcache.c dput 838 DEFAULT] 
16:49:15.169574: [fs/namespace.c mntput 1361 DEFAULT] 
16:49:15.169575: [fs/namei.c putname 262 DEFAULT] name: /run/systemd/journal/flushed

要注意,上边这日志量其实挺大,有兴趣的可以基于这个日志打印信息对照代码流程。

但打印日志也有些不是文件操作的日志,需要注意下,对于学习是比较有用的。

我们把这些日志的前几行转化为代码级,就像下边这样的,不过只举了几个例子。

有了这个pr_info_self宏后,从方便性来讲,其实提升不少,灵活性更强。

相关推荐
it技术分享just_free几秒前
基于 K8S kubernetes 搭建 安装 EFK日志收集平台
运维·docker·云原生·容器·kubernetes·k8s
2407-2 shw33 分钟前
weblogic CVE-2018-2894 靶场攻略
java·运维·服务器·安全·weblogic
xiaobai12 339 分钟前
集群聊天服务器项目【C++】(六)MySql数据库
服务器·数据库·c++
奇点 ♡1 小时前
【线程】线程的控制
linux·运维·c语言·开发语言·c++·visual studio code
向往风的男子1 小时前
【devops】devops-ansible之介绍和基础使用
运维·ansible·devops
安科瑞刘鸿鹏1 小时前
分布式光伏发电系统如何确保电能质量达到并网要求?
服务器·网络·分布式·嵌入式硬件·能源
学习3人组2 小时前
CentOS安装Hadoop系列
linux·hadoop·centos
xiaojiesec2 小时前
第159天:安全开发-Python-协议库爆破&FTP&SSH&Redis&SMTP&MYSQL等
运维·安全·ssh
Length-vision2 小时前
Linux入门学习:Linux调试器gdb使用
linux·学习