ucounts
Regular
4.4
: Absent ⚠️
4.8
: Absent ⚠️
4.10
: ✅struct ucounts {
struct hlist_node node;
struct user_namespace *ns;
kuid_t uid;
int count;
atomic_t ucount[7];
};
4.13
: ✅struct ucounts {
struct hlist_node node;
struct user_namespace *ns;
kuid_t uid;
int count;
atomic_t ucount[9];
};
4.15
: ✅struct ucounts {
struct hlist_node node;
struct user_namespace *ns;
kuid_t uid;
int count;
atomic_t ucount[9];
};
4.18
: ✅struct ucounts {
struct hlist_node node;
struct user_namespace *ns;
kuid_t uid;
int count;
atomic_t ucount[9];
};
5.0
: ✅struct ucounts {
struct hlist_node node;
struct user_namespace *ns;
kuid_t uid;
int count;
atomic_t ucount[9];
};
5.3
: ✅struct ucounts {
struct hlist_node node;
struct user_namespace *ns;
kuid_t uid;
int count;
atomic_t ucount[9];
};
5.4
: ✅struct ucounts {
struct hlist_node node;
struct user_namespace *ns;
kuid_t uid;
int count;
atomic_t ucount[9];
};
5.8
: ✅struct ucounts {
struct hlist_node node;
struct user_namespace *ns;
kuid_t uid;
int count;
atomic_t ucount[10];
};
5.11
: ✅struct ucounts {
struct hlist_node node;
struct user_namespace *ns;
kuid_t uid;
int count;
atomic_t ucount[10];
};
5.13
: ✅struct ucounts {
struct hlist_node node;
struct user_namespace *ns;
kuid_t uid;
int count;
atomic_t ucount[12];
};
5.15
: ✅struct ucounts {
struct hlist_node node;
struct user_namespace *ns;
kuid_t uid;
atomic_t count;
atomic_long_t ucount[16];
};
5.19
: ✅struct ucounts {
struct hlist_node node;
struct user_namespace *ns;
kuid_t uid;
atomic_t count;
atomic_long_t ucount[16];
};
6.2
: ✅struct ucounts {
struct hlist_node node;
struct user_namespace *ns;
kuid_t uid;
atomic_t count;
atomic_long_t ucount[12];
atomic_long_t rlimit[4];
};
6.5
: ✅struct ucounts {
struct hlist_node node;
struct user_namespace *ns;
kuid_t uid;
atomic_t count;
atomic_long_t ucount[12];
atomic_long_t rlimit[4];
};
6.8
: ✅struct ucounts {
struct hlist_node node;
struct user_namespace *ns;
kuid_t uid;
atomic_t count;
atomic_long_t ucount[12];
atomic_long_t rlimit[4];
};
arm64
: ✅struct ucounts {
struct hlist_node node;
struct user_namespace *ns;
kuid_t uid;
int count;
atomic_t ucount[9];
};
armhf
: ✅struct ucounts {
struct hlist_node node;
struct user_namespace *ns;
kuid_t uid;
int count;
atomic_t ucount[9];
};
ppc64el
: ✅struct ucounts {
struct hlist_node node;
struct user_namespace *ns;
kuid_t uid;
int count;
atomic_t ucount[9];
};
riscv64
: ✅struct ucounts {
struct hlist_node node;
struct user_namespace *ns;
kuid_t uid;
int count;
atomic_t ucount[9];
};
aws
: ✅struct ucounts {
struct hlist_node node;
struct user_namespace *ns;
kuid_t uid;
int count;
atomic_t ucount[9];
};
azure
: ✅struct ucounts {
struct hlist_node node;
struct user_namespace *ns;
kuid_t uid;
int count;
atomic_t ucount[9];
};
gcp
: ✅struct ucounts {
struct hlist_node node;
struct user_namespace *ns;
kuid_t uid;
int count;
atomic_t ucount[9];
};
lowlatency
: ✅struct ucounts {
struct hlist_node node;
struct user_namespace *ns;
kuid_t uid;
int count;
atomic_t ucount[9];
};
Regular
4.10
and 4.13
⚠️atomic_t ucount[7]
➡️ atomic_t ucount[9]
4.13
and 4.15
✅
4.15
and 4.18
✅
4.18
and 5.0
✅
5.0
and 5.3
✅
5.3
and 5.4
✅
5.4
and 5.8
⚠️atomic_t ucount[9]
➡️ atomic_t ucount[10]
5.8
and 5.11
✅
5.11
and 5.13
⚠️atomic_t ucount[10]
➡️ atomic_t ucount[12]
5.13
and 5.15
⚠️int count
➡️ atomic_t count
atomic_t ucount[12]
➡️ atomic_long_t ucount[16]
5.15
and 5.19
✅
5.19
and 6.2
⚠️atomic_long_t rlimit[4]
atomic_long_t ucount[16]
➡️ atomic_long_t ucount[12]
6.2
and 6.5
✅
6.5
and 6.8
✅
amd64
and arm64
✅
amd64
and armhf
✅
amd64
and ppc64el
✅
amd64
and riscv64
✅
generic
and aws
✅
generic
and azure
✅
generic
and gcp
✅
generic
and lowlatency
✅