2013-04-08 19:40:53 +00:00
|
|
|
/*-
|
2017-11-27 15:08:52 +00:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause-FreeBSD
|
|
|
|
*
|
2013-04-08 19:40:53 +00:00
|
|
|
* Copyright (c) 2012 Konstantin Belousov <kib@FreeBSD.org>
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
*
|
|
|
|
* $FreeBSD$
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __MACHINE_COUNTER_H__
|
|
|
|
#define __MACHINE_COUNTER_H__
|
|
|
|
|
|
|
|
#include <sys/pcpu.h>
|
|
|
|
#ifdef INVARIANTS
|
|
|
|
#include <sys/proc.h>
|
|
|
|
#endif
|
|
|
|
#include <machine/md_var.h>
|
|
|
|
#include <machine/specialreg.h>
|
|
|
|
|
- Remove 'struct vmmeter' from 'struct pcpu', leaving only global vmmeter
in place. To do per-cpu stats, convert all fields that previously were
maintained in the vmmeters that sit in pcpus to counter(9).
- Since some vmmeter stats may be touched at very early stages of boot,
before we have set up UMA and we can do counter_u64_alloc(), provide an
early counter mechanism:
o Leave one spare uint64_t in struct pcpu, named pc_early_dummy_counter.
o Point counter(9) fields of vmmeter to pcpu[0].pc_early_dummy_counter,
so that at early stages of boot, before counters are allocated we already
point to a counter that can be safely written to.
o For sparc64 that required a whole dummy pcpu[MAXCPU] array.
Further related changes:
- Don't include vmmeter.h into pcpu.h.
- vm.stats.vm.v_swappgsout and vm.stats.vm.v_swappgsin changed to 64-bit,
to match kernel representation.
- struct vmmeter hidden under _KERNEL, and only vmstat(1) is an exclusion.
This is based on benno@'s 4-year old patch:
https://lists.freebsd.org/pipermail/freebsd-arch/2013-July/014471.html
Reviewed by: kib, gallatin, marius, lidl
Differential Revision: https://reviews.freebsd.org/D10156
2017-04-17 17:34:47 +00:00
|
|
|
#define EARLY_COUNTER &__pcpu[0].pc_early_dummy_counter
|
|
|
|
|
2013-04-08 19:40:53 +00:00
|
|
|
#define counter_enter() do { \
|
|
|
|
if ((cpu_feature & CPUID_CX8) == 0) \
|
|
|
|
critical_enter(); \
|
|
|
|
} while (0)
|
|
|
|
|
|
|
|
#define counter_exit() do { \
|
|
|
|
if ((cpu_feature & CPUID_CX8) == 0) \
|
|
|
|
critical_exit(); \
|
|
|
|
} while (0)
|
|
|
|
|
|
|
|
static inline void
|
|
|
|
counter_64_inc_8b(uint64_t *p, int64_t inc)
|
|
|
|
{
|
|
|
|
|
|
|
|
__asm __volatile(
|
|
|
|
"movl %%fs:(%%esi),%%eax\n\t"
|
|
|
|
"movl %%fs:4(%%esi),%%edx\n"
|
|
|
|
"1:\n\t"
|
|
|
|
"movl %%eax,%%ebx\n\t"
|
|
|
|
"movl %%edx,%%ecx\n\t"
|
|
|
|
"addl (%%edi),%%ebx\n\t"
|
|
|
|
"adcl 4(%%edi),%%ecx\n\t"
|
|
|
|
"cmpxchg8b %%fs:(%%esi)\n\t"
|
|
|
|
"jnz 1b"
|
|
|
|
:
|
2013-04-09 17:55:39 +00:00
|
|
|
: "S" ((char *)p - (char *)&__pcpu[0]), "D" (&inc)
|
2013-04-08 19:40:53 +00:00
|
|
|
: "memory", "cc", "eax", "edx", "ebx", "ecx");
|
|
|
|
}
|
|
|
|
|
Fix issues with zeroing and fetching the counters, on x86 and ppc64.
Issues were noted by Bruce Evans and are present on all architectures.
On i386, a counter fetch should use atomic read of 64bit value,
otherwise carry from the increment on other CPU could be lost for the
given fetch, making error of 2^32. If 64bit read (cmpxchg8b) is not
available on the machine, it cannot be SMP and it is enough to disable
preemption around read to avoid the split read.
On x86 the counter increment is not atomic on purpose, which makes it
possible for the store of the incremented result to override just
zeroed per-cpu slot. The effect would be a counter going off by
arbitrary value after zeroing. Perform the counter zeroing on the
same processor which does the increments, making the operations
mutually exclusive. On i386, same as for the fetching, if the
cmpxchg8b is not available, machine is not SMP and we disable
preemption for zeroing.
PowerPC64 is treated the same as amd64.
For other architectures, the changes made to allow the compilation to
succeed, without fixing the issues with zeroing or fetching. It
should be possible to handle them by using the 64bit loads and stores
atomic WRT preemption (assuming the architectures also converted from
using critical sections to proper asm). If architecture does not
provide the facility, using global (spin) mutex would be non-optimal
but working solution.
Noted by: bde
Sponsored by: The FreeBSD Foundation
2013-07-01 02:48:27 +00:00
|
|
|
#ifdef IN_SUBR_COUNTER_C
|
2019-02-03 21:28:58 +00:00
|
|
|
struct counter_u64_fetch_cx8_arg {
|
|
|
|
uint64_t res;
|
|
|
|
uint64_t *p;
|
|
|
|
};
|
|
|
|
|
|
|
|
static uint64_t
|
Fix issues with zeroing and fetching the counters, on x86 and ppc64.
Issues were noted by Bruce Evans and are present on all architectures.
On i386, a counter fetch should use atomic read of 64bit value,
otherwise carry from the increment on other CPU could be lost for the
given fetch, making error of 2^32. If 64bit read (cmpxchg8b) is not
available on the machine, it cannot be SMP and it is enough to disable
preemption around read to avoid the split read.
On x86 the counter increment is not atomic on purpose, which makes it
possible for the store of the incremented result to override just
zeroed per-cpu slot. The effect would be a counter going off by
arbitrary value after zeroing. Perform the counter zeroing on the
same processor which does the increments, making the operations
mutually exclusive. On i386, same as for the fetching, if the
cmpxchg8b is not available, machine is not SMP and we disable
preemption for zeroing.
PowerPC64 is treated the same as amd64.
For other architectures, the changes made to allow the compilation to
succeed, without fixing the issues with zeroing or fetching. It
should be possible to handle them by using the 64bit loads and stores
atomic WRT preemption (assuming the architectures also converted from
using critical sections to proper asm). If architecture does not
provide the facility, using global (spin) mutex would be non-optimal
but working solution.
Noted by: bde
Sponsored by: The FreeBSD Foundation
2013-07-01 02:48:27 +00:00
|
|
|
counter_u64_read_one_8b(uint64_t *p)
|
|
|
|
{
|
|
|
|
uint32_t res_lo, res_high;
|
|
|
|
|
|
|
|
__asm __volatile(
|
|
|
|
"movl %%eax,%%ebx\n\t"
|
|
|
|
"movl %%edx,%%ecx\n\t"
|
|
|
|
"cmpxchg8b (%2)"
|
|
|
|
: "=a" (res_lo), "=d"(res_high)
|
|
|
|
: "SD" (p)
|
|
|
|
: "cc", "ebx", "ecx");
|
|
|
|
return (res_lo + ((uint64_t)res_high << 32));
|
|
|
|
}
|
|
|
|
|
2019-02-03 21:28:58 +00:00
|
|
|
static void
|
|
|
|
counter_u64_fetch_cx8_one(void *arg1)
|
|
|
|
{
|
|
|
|
struct counter_u64_fetch_cx8_arg *arg;
|
|
|
|
uint64_t val;
|
|
|
|
|
|
|
|
arg = arg1;
|
|
|
|
val = counter_u64_read_one_8b((uint64_t *)((char *)arg->p +
|
|
|
|
UMA_PCPU_ALLOC_SIZE * PCPU_GET(cpuid)));
|
|
|
|
atomic_add_64(&arg->res, val);
|
|
|
|
}
|
|
|
|
|
Fix issues with zeroing and fetching the counters, on x86 and ppc64.
Issues were noted by Bruce Evans and are present on all architectures.
On i386, a counter fetch should use atomic read of 64bit value,
otherwise carry from the increment on other CPU could be lost for the
given fetch, making error of 2^32. If 64bit read (cmpxchg8b) is not
available on the machine, it cannot be SMP and it is enough to disable
preemption around read to avoid the split read.
On x86 the counter increment is not atomic on purpose, which makes it
possible for the store of the incremented result to override just
zeroed per-cpu slot. The effect would be a counter going off by
arbitrary value after zeroing. Perform the counter zeroing on the
same processor which does the increments, making the operations
mutually exclusive. On i386, same as for the fetching, if the
cmpxchg8b is not available, machine is not SMP and we disable
preemption for zeroing.
PowerPC64 is treated the same as amd64.
For other architectures, the changes made to allow the compilation to
succeed, without fixing the issues with zeroing or fetching. It
should be possible to handle them by using the 64bit loads and stores
atomic WRT preemption (assuming the architectures also converted from
using critical sections to proper asm). If architecture does not
provide the facility, using global (spin) mutex would be non-optimal
but working solution.
Noted by: bde
Sponsored by: The FreeBSD Foundation
2013-07-01 02:48:27 +00:00
|
|
|
static inline uint64_t
|
|
|
|
counter_u64_fetch_inline(uint64_t *p)
|
|
|
|
{
|
2019-02-03 21:28:58 +00:00
|
|
|
struct counter_u64_fetch_cx8_arg arg;
|
Fix issues with zeroing and fetching the counters, on x86 and ppc64.
Issues were noted by Bruce Evans and are present on all architectures.
On i386, a counter fetch should use atomic read of 64bit value,
otherwise carry from the increment on other CPU could be lost for the
given fetch, making error of 2^32. If 64bit read (cmpxchg8b) is not
available on the machine, it cannot be SMP and it is enough to disable
preemption around read to avoid the split read.
On x86 the counter increment is not atomic on purpose, which makes it
possible for the store of the incremented result to override just
zeroed per-cpu slot. The effect would be a counter going off by
arbitrary value after zeroing. Perform the counter zeroing on the
same processor which does the increments, making the operations
mutually exclusive. On i386, same as for the fetching, if the
cmpxchg8b is not available, machine is not SMP and we disable
preemption for zeroing.
PowerPC64 is treated the same as amd64.
For other architectures, the changes made to allow the compilation to
succeed, without fixing the issues with zeroing or fetching. It
should be possible to handle them by using the 64bit loads and stores
atomic WRT preemption (assuming the architectures also converted from
using critical sections to proper asm). If architecture does not
provide the facility, using global (spin) mutex would be non-optimal
but working solution.
Noted by: bde
Sponsored by: The FreeBSD Foundation
2013-07-01 02:48:27 +00:00
|
|
|
uint64_t res;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
res = 0;
|
|
|
|
if ((cpu_feature & CPUID_CX8) == 0) {
|
|
|
|
/*
|
|
|
|
* The machines without cmpxchg8b are not SMP.
|
|
|
|
* Disabling the preemption provides atomicity of the
|
|
|
|
* counter reading, since update is done in the
|
|
|
|
* critical section as well.
|
|
|
|
*/
|
|
|
|
critical_enter();
|
2016-07-06 14:09:49 +00:00
|
|
|
CPU_FOREACH(i) {
|
Fix issues with zeroing and fetching the counters, on x86 and ppc64.
Issues were noted by Bruce Evans and are present on all architectures.
On i386, a counter fetch should use atomic read of 64bit value,
otherwise carry from the increment on other CPU could be lost for the
given fetch, making error of 2^32. If 64bit read (cmpxchg8b) is not
available on the machine, it cannot be SMP and it is enough to disable
preemption around read to avoid the split read.
On x86 the counter increment is not atomic on purpose, which makes it
possible for the store of the incremented result to override just
zeroed per-cpu slot. The effect would be a counter going off by
arbitrary value after zeroing. Perform the counter zeroing on the
same processor which does the increments, making the operations
mutually exclusive. On i386, same as for the fetching, if the
cmpxchg8b is not available, machine is not SMP and we disable
preemption for zeroing.
PowerPC64 is treated the same as amd64.
For other architectures, the changes made to allow the compilation to
succeed, without fixing the issues with zeroing or fetching. It
should be possible to handle them by using the 64bit loads and stores
atomic WRT preemption (assuming the architectures also converted from
using critical sections to proper asm). If architecture does not
provide the facility, using global (spin) mutex would be non-optimal
but working solution.
Noted by: bde
Sponsored by: The FreeBSD Foundation
2013-07-01 02:48:27 +00:00
|
|
|
res += *(uint64_t *)((char *)p +
|
2018-07-06 02:06:03 +00:00
|
|
|
UMA_PCPU_ALLOC_SIZE * i);
|
Fix issues with zeroing and fetching the counters, on x86 and ppc64.
Issues were noted by Bruce Evans and are present on all architectures.
On i386, a counter fetch should use atomic read of 64bit value,
otherwise carry from the increment on other CPU could be lost for the
given fetch, making error of 2^32. If 64bit read (cmpxchg8b) is not
available on the machine, it cannot be SMP and it is enough to disable
preemption around read to avoid the split read.
On x86 the counter increment is not atomic on purpose, which makes it
possible for the store of the incremented result to override just
zeroed per-cpu slot. The effect would be a counter going off by
arbitrary value after zeroing. Perform the counter zeroing on the
same processor which does the increments, making the operations
mutually exclusive. On i386, same as for the fetching, if the
cmpxchg8b is not available, machine is not SMP and we disable
preemption for zeroing.
PowerPC64 is treated the same as amd64.
For other architectures, the changes made to allow the compilation to
succeed, without fixing the issues with zeroing or fetching. It
should be possible to handle them by using the 64bit loads and stores
atomic WRT preemption (assuming the architectures also converted from
using critical sections to proper asm). If architecture does not
provide the facility, using global (spin) mutex would be non-optimal
but working solution.
Noted by: bde
Sponsored by: The FreeBSD Foundation
2013-07-01 02:48:27 +00:00
|
|
|
}
|
|
|
|
critical_exit();
|
|
|
|
} else {
|
2019-02-03 21:28:58 +00:00
|
|
|
arg.p = p;
|
|
|
|
arg.res = 0;
|
|
|
|
smp_rendezvous(NULL, counter_u64_fetch_cx8_one, NULL, &arg);
|
|
|
|
res = arg.res;
|
Fix issues with zeroing and fetching the counters, on x86 and ppc64.
Issues were noted by Bruce Evans and are present on all architectures.
On i386, a counter fetch should use atomic read of 64bit value,
otherwise carry from the increment on other CPU could be lost for the
given fetch, making error of 2^32. If 64bit read (cmpxchg8b) is not
available on the machine, it cannot be SMP and it is enough to disable
preemption around read to avoid the split read.
On x86 the counter increment is not atomic on purpose, which makes it
possible for the store of the incremented result to override just
zeroed per-cpu slot. The effect would be a counter going off by
arbitrary value after zeroing. Perform the counter zeroing on the
same processor which does the increments, making the operations
mutually exclusive. On i386, same as for the fetching, if the
cmpxchg8b is not available, machine is not SMP and we disable
preemption for zeroing.
PowerPC64 is treated the same as amd64.
For other architectures, the changes made to allow the compilation to
succeed, without fixing the issues with zeroing or fetching. It
should be possible to handle them by using the 64bit loads and stores
atomic WRT preemption (assuming the architectures also converted from
using critical sections to proper asm). If architecture does not
provide the facility, using global (spin) mutex would be non-optimal
but working solution.
Noted by: bde
Sponsored by: The FreeBSD Foundation
2013-07-01 02:48:27 +00:00
|
|
|
}
|
|
|
|
return (res);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void
|
|
|
|
counter_u64_zero_one_8b(uint64_t *p)
|
|
|
|
{
|
|
|
|
|
|
|
|
__asm __volatile(
|
|
|
|
"movl (%0),%%eax\n\t"
|
|
|
|
"movl 4(%0),%%edx\n"
|
|
|
|
"xorl %%ebx,%%ebx\n\t"
|
|
|
|
"xorl %%ecx,%%ecx\n\t"
|
|
|
|
"1:\n\t"
|
|
|
|
"cmpxchg8b (%0)\n\t"
|
|
|
|
"jnz 1b"
|
|
|
|
:
|
|
|
|
: "SD" (p)
|
|
|
|
: "memory", "cc", "eax", "edx", "ebx", "ecx");
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
counter_u64_zero_one_cpu(void *arg)
|
|
|
|
{
|
|
|
|
uint64_t *p;
|
|
|
|
|
2018-07-06 02:06:03 +00:00
|
|
|
p = (uint64_t *)((char *)arg + UMA_PCPU_ALLOC_SIZE * PCPU_GET(cpuid));
|
Fix issues with zeroing and fetching the counters, on x86 and ppc64.
Issues were noted by Bruce Evans and are present on all architectures.
On i386, a counter fetch should use atomic read of 64bit value,
otherwise carry from the increment on other CPU could be lost for the
given fetch, making error of 2^32. If 64bit read (cmpxchg8b) is not
available on the machine, it cannot be SMP and it is enough to disable
preemption around read to avoid the split read.
On x86 the counter increment is not atomic on purpose, which makes it
possible for the store of the incremented result to override just
zeroed per-cpu slot. The effect would be a counter going off by
arbitrary value after zeroing. Perform the counter zeroing on the
same processor which does the increments, making the operations
mutually exclusive. On i386, same as for the fetching, if the
cmpxchg8b is not available, machine is not SMP and we disable
preemption for zeroing.
PowerPC64 is treated the same as amd64.
For other architectures, the changes made to allow the compilation to
succeed, without fixing the issues with zeroing or fetching. It
should be possible to handle them by using the 64bit loads and stores
atomic WRT preemption (assuming the architectures also converted from
using critical sections to proper asm). If architecture does not
provide the facility, using global (spin) mutex would be non-optimal
but working solution.
Noted by: bde
Sponsored by: The FreeBSD Foundation
2013-07-01 02:48:27 +00:00
|
|
|
counter_u64_zero_one_8b(p);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void
|
|
|
|
counter_u64_zero_inline(counter_u64_t c)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
if ((cpu_feature & CPUID_CX8) == 0) {
|
|
|
|
critical_enter();
|
2016-07-06 14:09:49 +00:00
|
|
|
CPU_FOREACH(i)
|
2018-07-06 02:06:03 +00:00
|
|
|
*(uint64_t *)((char *)c + UMA_PCPU_ALLOC_SIZE * i) = 0;
|
Fix issues with zeroing and fetching the counters, on x86 and ppc64.
Issues were noted by Bruce Evans and are present on all architectures.
On i386, a counter fetch should use atomic read of 64bit value,
otherwise carry from the increment on other CPU could be lost for the
given fetch, making error of 2^32. If 64bit read (cmpxchg8b) is not
available on the machine, it cannot be SMP and it is enough to disable
preemption around read to avoid the split read.
On x86 the counter increment is not atomic on purpose, which makes it
possible for the store of the incremented result to override just
zeroed per-cpu slot. The effect would be a counter going off by
arbitrary value after zeroing. Perform the counter zeroing on the
same processor which does the increments, making the operations
mutually exclusive. On i386, same as for the fetching, if the
cmpxchg8b is not available, machine is not SMP and we disable
preemption for zeroing.
PowerPC64 is treated the same as amd64.
For other architectures, the changes made to allow the compilation to
succeed, without fixing the issues with zeroing or fetching. It
should be possible to handle them by using the 64bit loads and stores
atomic WRT preemption (assuming the architectures also converted from
using critical sections to proper asm). If architecture does not
provide the facility, using global (spin) mutex would be non-optimal
but working solution.
Noted by: bde
Sponsored by: The FreeBSD Foundation
2013-07-01 02:48:27 +00:00
|
|
|
critical_exit();
|
|
|
|
} else {
|
2017-04-09 02:00:03 +00:00
|
|
|
smp_rendezvous(smp_no_rendezvous_barrier,
|
|
|
|
counter_u64_zero_one_cpu, smp_no_rendezvous_barrier, c);
|
Fix issues with zeroing and fetching the counters, on x86 and ppc64.
Issues were noted by Bruce Evans and are present on all architectures.
On i386, a counter fetch should use atomic read of 64bit value,
otherwise carry from the increment on other CPU could be lost for the
given fetch, making error of 2^32. If 64bit read (cmpxchg8b) is not
available on the machine, it cannot be SMP and it is enough to disable
preemption around read to avoid the split read.
On x86 the counter increment is not atomic on purpose, which makes it
possible for the store of the incremented result to override just
zeroed per-cpu slot. The effect would be a counter going off by
arbitrary value after zeroing. Perform the counter zeroing on the
same processor which does the increments, making the operations
mutually exclusive. On i386, same as for the fetching, if the
cmpxchg8b is not available, machine is not SMP and we disable
preemption for zeroing.
PowerPC64 is treated the same as amd64.
For other architectures, the changes made to allow the compilation to
succeed, without fixing the issues with zeroing or fetching. It
should be possible to handle them by using the 64bit loads and stores
atomic WRT preemption (assuming the architectures also converted from
using critical sections to proper asm). If architecture does not
provide the facility, using global (spin) mutex would be non-optimal
but working solution.
Noted by: bde
Sponsored by: The FreeBSD Foundation
2013-07-01 02:48:27 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2013-04-08 19:40:53 +00:00
|
|
|
#define counter_u64_add_protected(c, inc) do { \
|
|
|
|
if ((cpu_feature & CPUID_CX8) == 0) { \
|
|
|
|
CRITICAL_ASSERT(curthread); \
|
|
|
|
*(uint64_t *)zpcpu_get(c) += (inc); \
|
|
|
|
} else \
|
|
|
|
counter_64_inc_8b((c), (inc)); \
|
|
|
|
} while (0)
|
|
|
|
|
|
|
|
static inline void
|
|
|
|
counter_u64_add(counter_u64_t c, int64_t inc)
|
|
|
|
{
|
|
|
|
|
|
|
|
if ((cpu_feature & CPUID_CX8) == 0) {
|
|
|
|
critical_enter();
|
|
|
|
*(uint64_t *)zpcpu_get(c) += inc;
|
|
|
|
critical_exit();
|
|
|
|
} else {
|
|
|
|
counter_64_inc_8b(c, inc);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* ! __MACHINE_COUNTER_H__ */
|