Lines Matching defs:start
60 static void l2c_lock_mem_region(u64 start, u64 len)
64 /* Round start/end to cache line boundaries */
65 end = ALIGN(start + len - 1, CVMX_CACHE_LINE_SIZE);
66 start = ALIGN(start, CVMX_CACHE_LINE_SIZE);
68 while (start <= end) {
69 l2c_lock_line(start);
70 start += CVMX_CACHE_LINE_SIZE;
76 static void l2c_unlock_mem_region(u64 start, u64 len)
80 /* Round start/end to cache line boundaries */
81 end = ALIGN(start + len - 1, CVMX_CACHE_LINE_SIZE);
82 start = ALIGN(start, CVMX_CACHE_LINE_SIZE);
84 while (start <= end) {
85 l2c_unlock_line(start);
86 start += CVMX_CACHE_LINE_SIZE;