Home | History | Annotate | Download | only in fio

Lines Matching full:probe

74 	"PROBE",
671 struct cmd_probe_reply_pdu probe;
674 dprint(FD_NET, "server: sending probe reply\n");
678 memset(&probe, 0, sizeof(probe));
679 gethostname((char *) probe.hostname, sizeof(probe.hostname));
681 probe.bigendian = 1;
683 strncpy((char *) probe.fio_version, fio_version_string, sizeof(probe.fio_version));
685 probe.os = FIO_OS;
686 probe.arch = FIO_ARCH;
687 probe.bpp = sizeof(void *);
688 probe.cpus = __cpu_to_le32(cpus_online());
694 probe.flags = __cpu_to_le64(FIO_PROBE_FLAG_ZLIB);
697 probe.flags = 0;
701 return fio_net_send_cmd(server_fd, FIO_NET_CMD_PROBE, &probe, sizeof(probe), &tag, NULL);