Searched refs:CACHE_LINE_SIZE (Results 1 - 25 of 36) sorted by relevance

12

/freebsd-10.0-release/sys/sys/
H A D_mutex.h62 } __aligned(CACHE_LINE_SIZE);
H A D_rwlock.h63 } __aligned(CACHE_LINE_SIZE);
H A Dbuf_ring.h50 volatile uint32_t br_cons_head __aligned(CACHE_LINE_SIZE);
57 void *br_ring[0] __aligned(CACHE_LINE_SIZE);
H A Dpcpu.h181 } __aligned(CACHE_LINE_SIZE);
/freebsd-10.0-release/sys/dev/sfxge/
H A Dsfxge_tx.h142 int blocked __aligned(CACHE_LINE_SIZE);
148 struct mtx lock __aligned(CACHE_LINE_SIZE);
152 unsigned int n_pend_desc __aligned(CACHE_LINE_SIZE);
166 unsigned int pending __aligned(CACHE_LINE_SIZE);
H A Dsfxge_rx.h157 struct sfxge_softc *sc __aligned(CACHE_LINE_SIZE);
163 struct sfxge_rx_sw_desc *queue __aligned(CACHE_LINE_SIZE);
172 efx_rxq_t *common __aligned(CACHE_LINE_SIZE);
H A Dsfxge.h51 #ifndef CACHE_LINE_SIZE
55 #define CACHE_LINE_SIZE 128 macro
103 struct sfxge_softc *sc __aligned(CACHE_LINE_SIZE);
104 struct mtx lock __aligned(CACHE_LINE_SIZE);
241 struct mtx tx_lock __aligned(CACHE_LINE_SIZE);
/freebsd-10.0-release/sys/dev/cxgbe/
H A Doffload.h85 struct mtx stid_lock __aligned(CACHE_LINE_SIZE);
93 struct mtx atid_lock __aligned(CACHE_LINE_SIZE);
99 struct mtx ftid_lock __aligned(CACHE_LINE_SIZE);
H A Dadapter.h437 } __aligned(CACHE_LINE_SIZE);
456 } __aligned(CACHE_LINE_SIZE);
471 } __aligned(CACHE_LINE_SIZE);
507 } __aligned(CACHE_LINE_SIZE);
540 u_int fl_buf_sizes __aligned(CACHE_LINE_SIZE);
634 an_handler_t an_handler __aligned(CACHE_LINE_SIZE);
/freebsd-10.0-release/sys/ia64/include/
H A Dparam.h87 * CACHE_LINE_SIZE is the compile-time maximum cache line size for an
91 #define CACHE_LINE_SIZE (1 << CACHE_LINE_SHIFT) macro
/freebsd-10.0-release/sys/net/
H A Dnetisr_internal.h119 } __aligned(CACHE_LINE_SIZE);
/freebsd-10.0-release/libexec/rtld-elf/
H A Drtld_lock.c80 base = xmalloc(CACHE_LINE_SIZE);
82 if ((uintptr_t)p % CACHE_LINE_SIZE != 0) {
84 base = xmalloc(2 * CACHE_LINE_SIZE);
86 if ((r = (uintptr_t)p % CACHE_LINE_SIZE) != 0)
87 p += CACHE_LINE_SIZE - r;
/freebsd-10.0-release/lib/libthr/thread/
H A Dthr_rtld.c55 char _pad[CACHE_LINE_SIZE - sizeof(struct urwlock)];
58 static struct rtld_lock lock_place[MAX_RTLD_LOCKS] __aligned(CACHE_LINE_SIZE);
/freebsd-10.0-release/sys/amd64/include/
H A Dparam.h89 * CACHE_LINE_SIZE is the compile-time maximum cache line size for an
93 #define CACHE_LINE_SIZE (1 << CACHE_LINE_SHIFT) macro
/freebsd-10.0-release/sys/arm/include/
H A Dparam.h98 * CACHE_LINE_SIZE is the compile-time maximum cache line size for an
102 #define CACHE_LINE_SIZE (1 << CACHE_LINE_SHIFT) macro
/freebsd-10.0-release/sys/i386/include/
H A Dparam.h82 * CACHE_LINE_SIZE is the compile-time maximum cache line size for an
86 #define CACHE_LINE_SIZE (1 << CACHE_LINE_SHIFT) macro
/freebsd-10.0-release/sys/powerpc/include/
H A Dparam.h93 * CACHE_LINE_SIZE is the compile-time maximum cache line size for an
97 #define CACHE_LINE_SIZE (1 << CACHE_LINE_SHIFT) macro
/freebsd-10.0-release/sys/sparc64/include/
H A Dparam.h78 * CACHE_LINE_SIZE is the compile-time maximum cache line size for an
82 #define CACHE_LINE_SIZE (1 << CACHE_LINE_SHIFT) macro
/freebsd-10.0-release/sys/mips/include/
H A Dparam.h125 * CACHE_LINE_SIZE is the compile-time maximum cache line size for an
129 #define CACHE_LINE_SIZE (1 << CACHE_LINE_SHIFT) macro
/freebsd-10.0-release/sys/dev/isci/scil/
H A Dscic_sds_request.h334 #define CACHE_LINE_SIZE (64) macro
337 (((POINTER_UINT)(address)) + (CACHE_LINE_SIZE - 1)) \
338 & ~(CACHE_LINE_SIZE - 1) \
/freebsd-10.0-release/sys/dev/nvme/
H A Dnvme_private.h113 * Define CACHE_LINE_SIZE here for older FreeBSD versions that do not define
116 #ifndef CACHE_LINE_SIZE
117 #define CACHE_LINE_SIZE (64) macro
229 struct mtx lock __aligned(CACHE_LINE_SIZE);
231 } __aligned(CACHE_LINE_SIZE);
/freebsd-10.0-release/sys/dev/virtio/network/
H A Dif_vtnetvar.h79 } __aligned(CACHE_LINE_SIZE);
114 } __aligned(CACHE_LINE_SIZE);
/freebsd-10.0-release/sys/boot/ia64/common/
H A Dcopy.c192 align = (type == LOAD_ELF) ? IA64_PBVM_PAGE_SIZE : CACHE_LINE_SIZE;
/freebsd-10.0-release/sys/vm/
H A Duma_int.h150 #define UMA_ALIGN __aligned(CACHE_LINE_SIZE)
/freebsd-10.0-release/sys/cddl/dev/dtrace/
H A Ddtrace_debug.c39 uintptr_t lock __aligned(CACHE_LINE_SIZE);

Completed in 609 milliseconds

12