1 2 3 4 5 6 7 8 9 10 11 12 13 14
// SPDX-License-Identifier: MIT /* * Copyright © 2019 Intel Corporation */ #include "intel_gt.h" void intel_gt_init_early(struct intel_gt *gt) { INIT_LIST_HEAD(>->active_rings); INIT_LIST_HEAD(>->closed_vma); spin_lock_init(>->closed_lock); }