iomap_pageRegular
4.4: Absent ⚠️
4.8: Absent ⚠️
4.10: Absent ⚠️
4.13: Absent ⚠️
4.15: Absent ⚠️
4.18: Absent ⚠️
5.0: ✅struct iomap_page {
atomic_t read_count;
atomic_t write_count;
long unsigned int uptodate[1];
};
5.3: ✅struct iomap_page {
atomic_t read_count;
atomic_t write_count;
long unsigned int uptodate[1];
};
5.4: ✅struct iomap_page {
atomic_t read_count;
atomic_t write_count;
long unsigned int uptodate[1];
};
5.8: ✅struct iomap_page {
atomic_t read_count;
atomic_t write_count;
spinlock_t uptodate_lock;
long unsigned int uptodate[1];
};
5.11: ✅struct iomap_page {
atomic_t read_bytes_pending;
atomic_t write_bytes_pending;
spinlock_t uptodate_lock;
long unsigned int uptodate[0];
};
5.13: ✅struct iomap_page {
atomic_t read_bytes_pending;
atomic_t write_bytes_pending;
spinlock_t uptodate_lock;
long unsigned int uptodate[0];
};
5.15: ✅struct iomap_page {
atomic_t read_bytes_pending;
atomic_t write_bytes_pending;
spinlock_t uptodate_lock;
long unsigned int uptodate[0];
};
5.19: ✅struct iomap_page {
atomic_t read_bytes_pending;
atomic_t write_bytes_pending;
spinlock_t uptodate_lock;
long unsigned int uptodate[0];
};
6.2: ✅struct iomap_page {
atomic_t read_bytes_pending;
atomic_t write_bytes_pending;
spinlock_t uptodate_lock;
long unsigned int uptodate[0];
};
6.5: ✅struct iomap_page {
atomic_t read_bytes_pending;
atomic_t write_bytes_pending;
spinlock_t uptodate_lock;
long unsigned int uptodate[0];
};
6.8: Absent ⚠️
arm64: ✅struct iomap_page {
atomic_t read_count;
atomic_t write_count;
long unsigned int uptodate[1];
};
armhf: ✅struct iomap_page {
atomic_t read_count;
atomic_t write_count;
long unsigned int uptodate[1];
};
ppc64el: ✅struct iomap_page {
atomic_t read_count;
atomic_t write_count;
long unsigned int uptodate[2];
};
riscv64: ✅struct iomap_page {
atomic_t read_count;
atomic_t write_count;
long unsigned int uptodate[1];
};
aws: ✅struct iomap_page {
atomic_t read_count;
atomic_t write_count;
long unsigned int uptodate[1];
};
azure: ✅struct iomap_page {
atomic_t read_count;
atomic_t write_count;
long unsigned int uptodate[1];
};
gcp: ✅struct iomap_page {
atomic_t read_count;
atomic_t write_count;
long unsigned int uptodate[1];
};
lowlatency: ✅struct iomap_page {
atomic_t read_count;
atomic_t write_count;
long unsigned int uptodate[1];
};
Regular
5.0 and 5.3 ✅
5.3 and 5.4 ✅
5.4 and 5.8 ⚠️spinlock_t uptodate_lock
5.8 and 5.11 ⚠️atomic_t read_bytes_pending
atomic_t write_bytes_pending
atomic_t read_count
atomic_t write_count
long unsigned int uptodate[1] ➡️ long unsigned int uptodate[0]
5.11 and 5.13 ✅
5.13 and 5.15 ✅
5.15 and 5.19 ✅
5.19 and 6.2 ✅
6.2 and 6.5 ✅
amd64 and arm64 ✅
amd64 and armhf ✅
amd64 and ppc64el ⚠️long unsigned int uptodate[1] ➡️ long unsigned int uptodate[2]
amd64 and riscv64 ✅
generic and aws ✅
generic and azure ✅
generic and gcp ✅
generic and lowlatency ✅