Home
last modified time | relevance | path

Searched refs:msg (Results 1 – 18 of 18) sorted by relevance

/kvm-unit-tests/x86/
H A Dhyperv_stimer.c95 struct hv_message *msg, int sint) in process_stimer_msg() argument
98 (struct hv_timer_message_payload *)msg->u.payload; in process_stimer_msg()
101 if (msg->header.message_type != HVMSG_TIMER_EXPIRED && in process_stimer_msg()
102 msg->header.message_type != HVMSG_NONE) { in process_stimer_msg()
108 if (msg->header.message_type == HVMSG_NONE) { in process_stimer_msg()
112 if (msg->header.payload_size < sizeof(*payload)) { in process_stimer_msg()
135 msg->header.message_type = HVMSG_NONE; in process_stimer_msg()
137 if (msg->header.message_flags.msg_pending) { in process_stimer_msg()
146 struct hv_message *msg; in __stimer_isr() local
152 msg = &msg_page->sint_message[i]; in __stimer_isr()
[all …]
H A Dhyperv_connections.c146 struct hv_input_post_message *msg = hv->post_msg; in do_msg() local
148 msg->payload[0]++; in do_msg()
151 virt_to_phys(msg), 0); in do_msg()
160 struct hv_message *msg = &hv->msg_page->sint_message[MSG_SINT]; in clear_msg() local
163 msg->header.message_type = 0; in clear_msg()
173 struct hv_message *msg = &hv->msg_page->sint_message[MSG_SINT]; in msg_ok() local
175 return msg->header.message_type == post_msg->message_type && in msg_ok()
176 msg->header.payload_size == post_msg->payload_size && in msg_ok()
177 msg->header.message_flags.msg_pending == 0 && in msg_ok()
178 msg->u.payload[0] == post_msg->payload[0] && in msg_ok()
[all …]
H A Dumip.c82 static void test_umip_nogp(const char *msg) in test_umip_nogp() argument
84 puts(msg); in test_umip_nogp()
102 static void test_umip_gp(const char *msg) in test_umip_gp() argument
104 puts(msg); in test_umip_gp()
H A Dsieve.c23 static void test_sieve(const char *msg, char *data, int size) in test_sieve() argument
27 printf("%s:", msg); in test_sieve()
H A Dsvm_tests.c2362 msg) { \ argument
2369 "Test %s address: %lx", msg, addr); \
2438 #define TEST_CANONICAL_VMRUN(seg_base, msg) \ argument
2443 "Successful VMRUN with noncanonical %s.base", msg); \
2447 #define TEST_CANONICAL_VMLOAD(seg_base, msg) \ argument
2453 "Test %s.base for canonical form: %lx", msg, seg_base); \
H A Dvmx.h1052 void test_skip(const char *msg);
H A Dvmx.c1720 void test_skip(const char *msg) in test_skip() argument
1722 printf("%s skipping test: %s\n", in_guest ? "Guest" : "Host", msg); in test_skip()
/kvm-unit-tests/s390x/
H A Dspec_ex-sie.c42 const char *msg; in test_spec_ex_sie() local
67 msg = "Interpreted initial exception, intercepted invalid program new PSW exception"; in test_spec_ex_sie()
69 report(vm.sblk->gpsw.addr == 0xdeadbeee, "%s", msg); in test_spec_ex_sie()
71 report_info("%s", msg); in test_spec_ex_sie()
H A Dsieve.c23 static void test_sieve(const char *msg, char *data, int size) in test_sieve() argument
27 printf("%s:", msg); in test_sieve()
/kvm-unit-tests/powerpc/
H A Dsieve.c23 static void test_sieve(const char *msg, char *data, int size) in test_sieve() argument
27 printf("%s:", msg); in test_sieve()
/kvm-unit-tests/common/
H A Dsieve.c23 static void test_sieve(const char *msg, char *data, int size) in test_sieve() argument
27 printf("%s:", msg); in test_sieve()
/kvm-unit-tests/arm/
H A Dsieve.c23 static void test_sieve(const char *msg, char *data, int size) in test_sieve() argument
27 printf("%s:", msg); in test_sieve()
H A Dgic.c189 static void check_lpi_hits(int *expected, const char *msg) in check_lpi_hits() argument
202 report(pass, "%s", msg); in check_lpi_hits()
/kvm-unit-tests/riscv/
H A Dsieve.c23 static void test_sieve(const char *msg, char *data, int size) in test_sieve() argument
27 printf("%s:", msg); in test_sieve()
/kvm-unit-tests/lib/s390x/
H A Dsclp-console.c143 char *str_dest = (char *)&sccb->msg; in sclp_print_ascii()
162 sccb->h.length = offsetof(WriteEventData, msg) + len; in sclp_print_ascii()
183 ptr = (unsigned char *) &sccb->msg.mdb.mto; in lm_print()
203 mdb = &sccb->msg.mdb; in lm_print()
207 mdb->header.length = len - offsetof(struct WriteEventData, msg.mdb.header); in lm_print()
H A Dsclp.h331 } msg; member
/kvm-unit-tests/scripts/
H A Dcheckpatch.pl2340 my ($level, $type, $msg) = @_;
2343 (defined $tst_only && $msg !~ /\Q$tst_only\E/)) {
2362 $output .= ' ' . $msg . "\n";
2474 my ($type, $msg) = @_;
2476 if (report("ERROR", $type, $msg)) {
2484 my ($type, $msg) = @_;
2486 if (report("WARNING", $type, $msg)) {
2494 my ($type, $msg) = @_;
2496 if ($check && report("CHECK", $type, $msg)) {
5621 my $msg = "";
[all …]
H A Dkernel-doc452 my $msg = shift;
453 print STDERR "$location: warning: $msg";