diff options
author | Ian Moffett <ian@osmora.org> | 2024-06-21 22:03:41 -0400 |
---|---|---|
committer | Ian Moffett <ian@osmora.org> | 2024-06-21 22:03:41 -0400 |
commit | c43e62b89d8bcb5ccd4f3265375e09a22dab3831 (patch) | |
tree | ed76f3993f1300bf8b04c734b9c00d2db3f165e2 | |
parent | f290314f286b70a8f59becedd5f789c21f675b5d (diff) |
kernel: cdefs: Fixup comment
Signed-off-by: Ian Moffett <ian@osmora.org>
-rw-r--r-- | sys/include/sys/cdefs.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/include/sys/cdefs.h b/sys/include/sys/cdefs.h index 8ccf5cc..bec6271 100644 --- a/sys/include/sys/cdefs.h +++ b/sys/include/sys/cdefs.h @@ -43,7 +43,8 @@ /* * Align data on a cache line boundary. This is * mostly useful for certain locks to ensure they - * have their own cache line to reduce contention. + * have their own cache line to reduce cache line + * bouncing. */ #ifndef __cacheline_aligned #define __cacheline_aligned \ |