Lines Matching defs:limit
42 * @limit: maximum address of the gmap address space
46 static struct gmap *gmap_alloc(unsigned long limit)
53 if (limit < _REGION3_SIZE) {
54 limit = _REGION3_SIZE - 1;
57 } else if (limit < _REGION2_SIZE) {
58 limit = _REGION2_SIZE - 1;
61 } else if (limit < _REGION1_SIZE) {
62 limit = _REGION1_SIZE - 1;
66 limit = -1UL;
92 gmap->asce_end = limit;
104 * @limit: maximum size of the gmap address space
108 struct gmap *gmap_create(struct mm_struct *mm, unsigned long limit)
113 gmap = gmap_alloc(limit);
1675 unsigned long limit;
1686 limit = -1UL >> (33 - (((asce & _ASCE_TYPE_MASK) >> 2) * 11));
1688 limit = -1UL;
1689 new = gmap_alloc(limit);