[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-changelog] [xen master] x86/HVM: make hvm_find_io_handler() static
commit 0f72f9ba1f0586afac67bc88f35eba5cc26392cd Author: Jan Beulich <jbeulich@xxxxxxxx> AuthorDate: Thu Feb 2 12:50:35 2017 +0100 Commit: Jan Beulich <jbeulich@xxxxxxxx> CommitDate: Thu Feb 2 12:50:35 2017 +0100 x86/HVM: make hvm_find_io_handler() static This reduces the chance of misuse - calling it must in particular always be accompanied by calling the corresponding ->complete() hook. Constify its parameter at once. Signed-off-by: Jan Beulich <jbeulich@xxxxxxxx> Reviewed-by: Paul Durrant <paul.durrant@xxxxxxxxxx> --- xen/arch/x86/hvm/intercept.c | 2 +- xen/include/asm-x86/hvm/io.h | 2 -- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/xen/arch/x86/hvm/intercept.c b/xen/arch/x86/hvm/intercept.c index bf141c9..721fb38 100644 --- a/xen/arch/x86/hvm/intercept.c +++ b/xen/arch/x86/hvm/intercept.c @@ -210,7 +210,7 @@ int hvm_process_io_intercept(const struct hvm_io_handler *handler, return rc; } -const struct hvm_io_handler *hvm_find_io_handler(ioreq_t *p) +static const struct hvm_io_handler *hvm_find_io_handler(const ioreq_t *p) { struct domain *curr_d = current->domain; unsigned int i; diff --git a/xen/include/asm-x86/hvm/io.h b/xen/include/asm-x86/hvm/io.h index 41ade5c..d6801c1 100644 --- a/xen/include/asm-x86/hvm/io.h +++ b/xen/include/asm-x86/hvm/io.h @@ -97,8 +97,6 @@ struct hvm_io_ops { int hvm_process_io_intercept(const struct hvm_io_handler *handler, ioreq_t *p); -const struct hvm_io_handler *hvm_find_io_handler(ioreq_t *p); - int hvm_io_intercept(ioreq_t *p); struct hvm_io_handler *hvm_next_io_handler(struct domain *d); -- generated by git-patchbot for /home/xen/git/xen.git#master _______________________________________________ Xen-changelog mailing list Xen-changelog@xxxxxxxxxxxxx https://lists.xenproject.org/xen-changelog
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |