Home
last modified time | relevance | path

Searched refs:log (Results 1 – 25 of 1441) sorted by relevance

12345678910>>...58

/openbmc/qemu/tests/qemu-iotests/tests/
H A Dimage-fleecing28 from iotests import log, qemu_img, qemu_io
64 log('--- Setting up images ---')
65 log('')
84 log('Done')
86 log('')
87 log('--- Launching VM ---')
88 log('')
98 log('Done')
100 log('')
101 log('--- Setting up Fleecing Graph ---')
[all …]
H A Dinactive-node-nbd57 iotests.log('Preparing disk...')
66 iotests.log('Launching VM...')
83 iotests.log('\n=== Creating export of inactive node ===')
85 iotests.log('\nExports activate nodes without allow-inactive')
86 iotests.log('disk-fmt active: %s' % node_is_active(vm, 'disk-fmt'))
88 iotests.log('disk-fmt active: %s' % node_is_active(vm, 'disk-fmt'))
94 iotests.log('\nExports activate nodes with allow-inactive=false')
96 iotests.log('disk-fmt active: %s' % node_is_active(vm, 'disk-fmt'))
98 iotests.log('disk-fmt active: %s' % node_is_active(vm, 'disk-fmt'))
104 iotests.log('\nExport leaves nodes inactive with allow-inactive=true')
[all …]
H A Dcopy-before-write97 log = self.vm.get_log()
98 log = iotests.filter_qtest(log)
99 log = iotests.filter_qemu_io(log)
100 return log
160 log = self.vm.get_log()
161 log = iotests.filter_qemu_io(log)
162 return log
169 log = self.do_cbw_error('break-snapshot')
171 self.assertEqual(log, """\
182 log = self.do_cbw_error('break-guest-write')
[all …]
H A Dqsd-migrate38 iotests.log('Preparing disk...')
41 iotests.log('Launching source QSD...')
51 iotests.log('Launching source VM...')
57 iotests.log('Launching destination QSD...')
69 iotests.log('Launching destination VM...')
76 iotests.log('\nTest I/O on the source')
82 iotests.log('\nStarting migration...')
96 iotests.log('\nPre-switchover: Reconfigure QSD instances')
98 iotests.log(qsd_src.qmp('blockdev-set-active', {'active': False}))
107 iotests.log(qsd_dst.qmp('blockdev-set-active', {'active': True}))
[all …]
/openbmc/qemu/tests/qemu-iotests/
H A D21943 iotests.log('=== Testing %s/%s ===' % (pause_cmd, resume_cmd))
45 iotests.log(vm.qmp(pause_cmd, **{pause_arg: 'job0'}))
47 iotests.log(iotests.filter_qmp_event(vm.event_wait('JOB_STATUS_CHANGE')))
49 iotests.log(result)
54 iotests.log(vm.qmp(resume_cmd, **{resume_arg: 'job0'}))
55 iotests.log(iotests.filter_qmp_event(vm.event_wait('JOB_STATUS_CHANGE')))
60 iotests.log(result)
65 iotests.log(vm.qmp('query-jobs'))
70 iotests.log('')
71 iotests.log('')
[all …]
H A D21831 from iotests import log, qemu_img, qemu_io
70 log('')
71 log('=== Cancel mirror job before convergence ===')
72 log('')
74 log('--- force=false ---')
75 log('')
81 log('Cancelling job')
82 log(vm.qmp('block-job-cancel', device='mirror', force=False))
84 log(vm.event_wait('BLOCK_JOB_CANCELLED'),
87 log('')
[all …]
H A D23624 from iotests import log
48 log('--- Preparing image & VM ---\n')
53 log('\n--- Adding preliminary bitmaps A & B ---\n')
60 log('\n--- Emulating writes ---\n')
63 log(cmd)
64 log(vm.hmp_qemu_io("drive0", cmd))
66 log(query_bitmaps(vm), indent=2)
68 log('\n--- Submitting & Aborting Transaction ---\n')
79 log(query_bitmaps(vm), indent=2)
81 log('\n--- Disabling B & Adding C ---\n')
[all …]
H A D21624 from iotests import log, qemu_img, qemu_io
30 log('')
31 log('=== Copy-on-read across nodes ===')
32 log('')
51 log('--- Setting up images ---')
52 log('')
60 log('Done')
62 log('')
63 log('--- Doing COR ---')
64 log('')
[all …]
H A D23739 iotests.log("=== Successful image creation (defaults) ===")
40 iotests.log("")
62 iotests.log("=== Successful image creation (inline blockdev-add, explicit defaults) ===")
63 iotests.log("")
91 iotests.log("=== Successful image creation (with non-default options) ===")
92 iotests.log("")
119 iotests.log("=== Invalid BlockdevRef ===")
120 iotests.log("")
132 iotests.log("=== Adapter types ===")
133 iotests.log("")
[all …]
H A D24624 from iotests import log
41 log('--- Preparing image & VM ---\n')
46 log('--- 1st Boot (Establish Baseline Image) ---\n')
49 log('\n--- Adding bitmaps Small, Medium, Large, and Transient ---\n')
59 log('--- Forcing flush of bitmaps to disk ---\n')
60 log(query_bitmaps(vm), indent=2)
64 log('--- 2nd Boot (Grow Image) ---\n')
66 log(query_bitmaps(vm), indent=2)
68 log('--- Adding new bitmap, growing image, and adding 2nd new bitmap ---')
75 log(query_bitmaps(vm), indent=2)
[all …]
H A D19440 iotests.log('Launching VMs...')
49 iotests.log('Launching NBD server on destination...')
50 …iotests.log(dest_vm.qmp('nbd-server-start', addr={'type': 'unix', 'data': {'path': nbd_sock_path}}…
51 iotests.log(dest_vm.qmp('nbd-server-add', device='drive0', writable=True))
53 iotests.log('Starting `drive-mirror` on source...')
54 iotests.log(source_vm.qmp(
63 iotests.log('Waiting for `drive-mirror` to complete...')
64 iotests.log(source_vm.event_wait('BLOCK_JOB_READY'),
68 iotests.log('Starting migration...')
73 iotests.log(source_vm.qmp('migrate', uri='unix:{0}'.format(migration_sock_path)))
[all …]
H A D31024 from iotests import log, qemu_img, qemu_io
30 log('')
31 log('=== Copy-on-read across nodes ===')
32 log('')
43 log('--- Setting up images ---')
44 log('')
62 log('Done')
64 log('')
65 log('--- Doing COR ---')
66 log('')
[all …]
H A D23443 iotests.log('Launching source VM...')
52 iotests.log('Launching destination VM...')
64 iotests.log(vm_a.qmp('blockdev-snapshot', node='drive0-backing',
66 iotests.log(vm_b.qmp('blockdev-snapshot', node='drive0-backing',
69 iotests.log('Starting migration to B...')
70 iotests.log(vm_a.qmp('migrate', uri='exec:cat >%s' % (fifo_a)))
77 iotests.log(vm_a.qmp('query-migrate')['return']['status'])
78 iotests.log(vm_b.qmp('query-migrate')['return']['status'])
80 iotests.log(vm_a.qmp('query-status'))
81 iotests.log(vm_b.qmp('query-status'))
[all …]
H A D21338 iotests.log("=== Successful image creation (defaults) ===")
39 iotests.log("")
61 iotests.log("=== Successful image creation (explicit defaults) ===")
62 iotests.log("")
88 iotests.log("=== Successful image creation (with non-default options) ===")
89 iotests.log("")
115 iotests.log("=== Invalid BlockdevRef ===")
116 iotests.log("")
127 iotests.log("=== Zero size ===")
128 iotests.log("")
[all …]
H A D26628 iotests.log("=== Successful image creation (defaults) ===")
29 iotests.log("")
42 iotests.log("=== Successful image creation (explicit defaults) ===")
43 iotests.log("")
58 iotests.log("=== Successful image creation (non-default options) ===")
59 iotests.log("")
73 iotests.log("=== Size not representable in CHS ===")
74 iotests.log("")
87 iotests.log("=== Zero size===")
88 iotests.log("")
[all …]
H A D21143 iotests.log("=== Successful image creation (defaults) ===")
44 iotests.log("")
62 iotests.log(iotests.qemu_img_map(disk_path))
67 iotests.log("=== Successful image creation (explicit defaults) ===")
68 iotests.log("")
86 iotests.log(iotests.qemu_img_map(disk_path))
91 iotests.log("=== Successful image creation (with non-default options) ===")
92 iotests.log("")
110 iotests.log(iotests.qemu_img_map(disk_path))
115 iotests.log("=== Invalid BlockdevRef ===")
[all …]
/openbmc/qemu/hw/cxl/
H A Dcxl-events.c20 static void reset_overflow(CXLEventLog *log) in reset_overflow() argument
22 log->overflow_err_count = 0; in reset_overflow()
23 log->first_overflow_timestamp = 0; in reset_overflow()
24 log->last_overflow_timestamp = 0; in reset_overflow()
29 CXLEventLog *log; in cxl_event_init() local
33 log = &cxlds->event_logs[i]; in cxl_event_init()
34 log->next_handle = 1; in cxl_event_init()
35 log->overflow_err_count = 0; in cxl_event_init()
36 log->first_overflow_timestamp = 0; in cxl_event_init()
37 log->last_overflow_timestamp = 0; in cxl_event_init()
[all …]
/openbmc/openbmc/meta-facebook/meta-minerva/recipes-phosphor/console/obmc-console/
H A Dserver.ttyS5.conf7 logfile = /var/log/obmc-console-compute_blade_1.log
11 logfile = /var/log/obmc-console-compute_blade_2.log
15 logfile = /var/log/obmc-console-compute_blade_3.log
19 logfile = /var/log/obmc-console-compute_blade_4.log
23 logfile = /var/log/obmc-console-compute_blade_5.log
27 logfile = /var/log/obmc-console-compute_blade_6.log
31 logfile = /var/log/obmc-console-compute_blade_7.log
35 logfile = /var/log/obmc-console-compute_blade_8.log
39 logfile = /var/log/obmc-console-compute_blade_9.log
43 logfile = /var/log/obmc-console-compute_blade_10.log
[all …]
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-extended/rsyslog/rsyslog/
H A Drsyslog.conf23 auth,authpriv.* /var/log/auth.log
24 *.*;auth,authpriv.none -/var/log/syslog
25 cron.* /var/log/cron.log
26 daemon.* -/var/log/daemon.log
27 kern.* -/var/log/kern.log
28 lpr.* -/var/log/lpr.log
29 mail.* -/var/log/mail.log
30 user.* -/var/log/user.log
36 mail.info -/var/log/mail.info
37 mail.warn -/var/log/mail.warn
[all …]
H A Drsyslog.logrotate3 /var/log/syslog
16 /var/log/mail.info
17 /var/log/mail.warn
18 /var/log/mail.err
19 /var/log/mail.log
20 /var/log/daemon.log
21 /var/log/kern.log
22 /var/log/auth.log
23 /var/log/user.log
24 /var/log/lpr.log
[all …]
/openbmc/openbmc/poky/meta/recipes-rt/rt-tests/files/
H A Drt_bmark.py107 def log(*msg): function
118 log(stamp, *msg)
123 log("=" * 78)
124 log()
125 log(" Test case (%d/%d): %s" % (seq_no, nr_of_tests, tc_name(name)))
126 log()
127 log("." * 78)
128 log()
159 log("No stress requested")
165 log("Starting stress(", added, ")")
[all …]
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-support/ssiapi/ssiapi/
H A D0001-log-Avoid-shadowing-functions-from-std-lib.patch4 Subject: [PATCH 1/4] log: Avoid shadowing functions from std lib
10 lib/log/log.c | 2 +-
11 lib/log/log.h | 8 ++++----
14 diff --git a/lib/log/log.c b/lib/log/log.c
16 --- a/lib/log/log.c
17 +++ b/lib/log/log.c
27 diff --git a/lib/log/log.h b/lib/log/log.h
29 --- a/lib/log/log.h
30 +++ b/lib/log/log.h
35 -#define log(__level, __message) \
[all …]
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-support/syslog-ng/files/
H A Dsyslog-ng.conf.sysvinit24 source s_src { unix-dgram("/dev/log"); internal();
38 destination d_auth { file("/var/log/auth.log"); };
39 destination d_cron { file("/var/log/cron.log"); };
40 destination d_daemon { file("/var/log/daemon.log"); };
41 destination d_kern { file("/var/log/kern.log"); };
42 destination d_lpr { file("/var/log/lpr.log"); };
43 destination d_mail { file("/var/log/mail.log"); };
44 destination d_syslog { file("/var/log/syslog"); };
45 destination d_user { file("/var/log/user.log"); };
46 destination d_uucp { file("/var/log/uucp.log"); };
[all …]
H A Dsyslog-ng.conf.systemd39 destination d_auth { file("/var/log/auth.log"); };
40 destination d_cron { file("/var/log/cron.log"); };
41 destination d_daemon { file("/var/log/daemon.log"); };
42 destination d_kern { file("/var/log/kern.log"); };
43 destination d_lpr { file("/var/log/lpr.log"); };
44 destination d_mail { file("/var/log/mail.log"); };
45 destination d_syslog { file("/var/log/syslog"); };
46 destination d_user { file("/var/log/user.log"); };
47 destination d_uucp { file("/var/log/uucp.log"); };
49 # This files are the log come from the mail subsystem.
[all …]
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-extended/duktape/files/
H A Drun-ptest13 ./eval "print('Hello world!'); 123;" > out.log
15 sed -n '2p' out.log > eval.log
16 sed -n '3p' out.log >> eval.log
18 if grep -w 'Hello world!\|123' eval.log 2>&1; then
23 rm -f eval.log out.log
25 ./evloop timer-test.js > evloop.log 2>&1
27 if grep -i "no active timers and no sockets to poll" evloop.log 2>&1; then
32 rm -f evloop.log

12345678910>>...58