]> git.proxmox.com Git - mirror_ubuntu-eoan-kernel.git/commitdiff
xen/grant-table: Export gnttab_{alloc|free}_pages as GPL
authorOleksandr Andrushchenko <oleksandr_andrushchenko@epam.com>
Fri, 1 Jun 2018 11:41:24 +0000 (14:41 +0300)
committerJuergen Gross <jgross@suse.com>
Tue, 19 Jun 2018 12:45:27 +0000 (14:45 +0200)
Only gnttab_{alloc|free}_pages are exported as EXPORT_SYMBOL
while all the rest are exported as EXPORT_SYMBOL_GPL, thus
effectively making it not possible for non-GPL driver modules
to use grant table module. Export gnttab_{alloc|free}_pages as
EXPORT_SYMBOL_GPL so all the exports are aligned.

Signed-off-by: Oleksandr Andrushchenko <oleksandr_andrushchenko@epam.com>
Reviewed-by: Juergen Gross <jgross@suse.com>
Signed-off-by: Juergen Gross <jgross@suse.com>
drivers/xen/grant-table.c

index 27be107d648020a1faf69f2feb3ee118f884411f..ba36ff3e49036aebcd3bd4342c76924d46e30082 100644 (file)
@@ -799,7 +799,7 @@ int gnttab_alloc_pages(int nr_pages, struct page **pages)
 
        return 0;
 }
 
        return 0;
 }
-EXPORT_SYMBOL(gnttab_alloc_pages);
+EXPORT_SYMBOL_GPL(gnttab_alloc_pages);
 
 /**
  * gnttab_free_pages - free pages allocated by gnttab_alloc_pages()
 
 /**
  * gnttab_free_pages - free pages allocated by gnttab_alloc_pages()
@@ -820,7 +820,7 @@ void gnttab_free_pages(int nr_pages, struct page **pages)
        }
        free_xenballooned_pages(nr_pages, pages);
 }
        }
        free_xenballooned_pages(nr_pages, pages);
 }
-EXPORT_SYMBOL(gnttab_free_pages);
+EXPORT_SYMBOL_GPL(gnttab_free_pages);
 
 /* Handling of paged out grant targets (GNTST_eagain) */
 #define MAX_DELAY 256
 
 /* Handling of paged out grant targets (GNTST_eagain) */
 #define MAX_DELAY 256