Lines Matching defs:limit
17 desc->limit0 = info->limit & 0x0ffff;
30 desc->limit1 = (info->limit & 0xf0000) >> 16;
301 * Call this if you need the TSS limit to be correct, which should be the case
314 * If you do something evil that corrupts the cached TSS limit (I'm looking
317 * The optimization here is that the TSS limit only matters for Linux if the
318 * IO bitmap is in use. If the TSS limit gets forced to its minimum value,
335 (info)->limit == 0 && \
347 info->limit == 0 &&
378 static inline void set_desc_limit(struct desc_struct *desc, unsigned long limit)
380 desc->limit0 = limit & 0xffff;
381 desc->limit1 = (limit >> 16) & 0xf;