]> xenbits.xensource.com Git - people/julieng/freebsd.git/commitdiff
xen/intr: Don't need to export xen_intr_pcpu
authorJulien Grall <julien.grall@linaro.org>
Sat, 19 Apr 2014 21:34:43 +0000 (22:34 +0100)
committerJulien Grall <julien.grall@citrix.com>
Sat, 3 Oct 2015 18:37:28 +0000 (19:37 +0100)
xen_intr_pcpu is only used within sys/xen/xen_intr.c

sys/xen/xen_intr.c

index a44a4702ba7f0870512b542cb1c99c234cefba19..f1221d6ad8e6cf6e50d3ee6849a51f92b5777d5e 100644 (file)
@@ -102,7 +102,7 @@ struct xen_intr_pcpu_data {
  * Start the scan at port 0 by initializing the last scanned
  * location as the highest numbered event channel port.
  */
-DPCPU_DEFINE(struct xen_intr_pcpu_data, xen_intr_pcpu) = {
+static DPCPU_DEFINE(struct xen_intr_pcpu_data, xen_intr_pcpu) = {
        .last_processed_l1i = LONG_BIT - 1,
        .last_processed_l2i = LONG_BIT - 1
 };