mirror of
https://github.com/opnsense/src.git
synced 2026-06-08 16:22:46 -04:00
vfs: group fields used for per-cpu ops in one cacheline
Sponsored by: The FreeBSD Foundation
This commit is contained in:
parent
12294db4ac
commit
b488246b45
2 changed files with 2 additions and 2 deletions
|
|
@ -157,7 +157,7 @@ vfs_mount_init(void *dummy __unused)
|
|||
{
|
||||
|
||||
mount_zone = uma_zcreate("Mountpoints", sizeof(struct mount), NULL,
|
||||
NULL, mount_init, mount_fini, UMA_ALIGN_PTR, UMA_ZONE_NOFREE);
|
||||
NULL, mount_init, mount_fini, UMA_ALIGN_CACHE, UMA_ZONE_NOFREE);
|
||||
}
|
||||
SYSINIT(vfs_mount, SI_SUB_VFS, SI_ORDER_ANY, vfs_mount_init, NULL);
|
||||
|
||||
|
|
|
|||
|
|
@ -226,7 +226,7 @@ struct mount {
|
|||
struct lock mnt_explock; /* vfs_export walkers lock */
|
||||
TAILQ_ENTRY(mount) mnt_upper_link; /* (m) we in the all uppers */
|
||||
TAILQ_HEAD(, mount) mnt_uppers; /* (m) upper mounts over us*/
|
||||
int mnt_vfs_ops; /* (i) pending vfs ops */
|
||||
int __aligned(CACHE_LINE_SIZE) mnt_vfs_ops;/* (i) pending vfs ops */
|
||||
int *mnt_thread_in_ops_pcpu;
|
||||
int *mnt_ref_pcpu;
|
||||
int *mnt_lockref_pcpu;
|
||||
|
|
|
|||
Loading…
Reference in a new issue