summaryrefslogtreecommitdiff
path: root/security
diff options
context:
space:
mode:
authorDarrick J. Wong <darrick.wong@oracle.com>2019-05-21 17:07:24 -0700
committerDarrick J. Wong <darrick.wong@oracle.com>2019-08-16 19:06:24 -0700
commit316a9ca89d66fab7a3a0944d2a3f64024377b92b (patch)
tree1a885b237aaabd40861c913d76862ae2953b05e7 /security
parentdad37338e90c97ce2964081f05c3b27ee848a2b7 (diff)
xfs: convert big array and blob array to use memfd backendrepair-part-one_2019-08-16
There are several problems with the initial implementations of the big array and the blob array data structures. First, using linked lists imposes a two-pointer overhead on every record stored. For blobs this isn't serious, but for fixed-size records this increases memory requirements by 40-60%. Second, we're using kernel memory to store the intermediate records. Kernel memory cannot be paged out, which means we run the risk of OOMing the machine when we run out of physical memory. Therefore, replace the linked lists in both structures with memfd files. Random access becomes much easier, memory overhead drops to a negligible amount, and because memfd pages can be swapped, we have considerably more flexibility for memory use. Signed-off-by: Darrick J. Wong <darrick.wong@oracle.com>
Diffstat (limited to 'security')
0 files changed, 0 insertions, 0 deletions