search for: cov_ops

Displaying 2 results from an estimated 2 matches for "cov_ops".

Did you mean: cdv_ops
2017 Oct 26
1
[PATCH for-next 7/9] coverage: introduce support for llvm profiling
..., end_data - start_data); + APPEND_TO_BUFFER((char *)start_counters, end_counters - start_counters); + APPEND_TO_BUFFER((char *)start_names, end_names - start_names); +#undef APPEND_TO_BUFFER + + clear_guest_offset(buffer, off, *buf_size - off); + + return 0; +} + +struct cov_sysctl_ops cov_ops = { + .get_size = get_size, + .reset_counters = reset_counters, + .dump = dump, +}; + +/* + * Local variables: + * mode: C + * c-file-style: "BSD" + * c-basic-offset: 4 + * tab-width: 4 + * indent-tabs-mode: nil + * End: + */ diff --git a/xen/include/public/sysctl.h b/xen/include...
2017 Oct 26
2
[PATCH for-next 0/9] LLVM coverage support for Xen
Hello, The following patch series enables LLVM coverage support for the Xen hypervisor. This first patches are a re-organization of the gcov support, in order to make the support generic for all coverage technologies. This is mostly a name change from gcov -> cov in several places and files, together with the addition of a Kconfig option in order to enable LLVM coverage. Patch 7 introduces