tty_bufferRegular
4.4: ✅struct tty_buffer {
struct tty_buffer *next;
struct llist_node free;
int used;
int size;
int commit;
int read;
int flags;
long unsigned int data[0];
};
4.8: ✅struct tty_buffer {
struct tty_buffer *next;
struct llist_node free;
int used;
int size;
int commit;
int read;
int flags;
long unsigned int data[0];
};
4.10: ✅struct tty_buffer {
struct tty_buffer *next;
struct llist_node free;
int used;
int size;
int commit;
int read;
int flags;
long unsigned int data[0];
};
4.13: ✅struct tty_buffer {
struct tty_buffer *next;
struct llist_node free;
int used;
int size;
int commit;
int read;
int flags;
long unsigned int data[0];
};
4.15: ✅struct tty_buffer {
struct tty_buffer *next;
struct llist_node free;
int used;
int size;
int commit;
int read;
int flags;
long unsigned int data[0];
};
4.18: ✅struct tty_buffer {
struct tty_buffer *next;
struct llist_node free;
int used;
int size;
int commit;
int read;
int flags;
long unsigned int data[0];
};
5.0: ✅struct tty_buffer {
struct tty_buffer *next;
struct llist_node free;
int used;
int size;
int commit;
int read;
int flags;
long unsigned int data[0];
};
5.3: ✅struct tty_buffer {
struct tty_buffer *next;
struct llist_node free;
int used;
int size;
int commit;
int read;
int flags;
long unsigned int data[0];
};
5.4: ✅struct tty_buffer {
struct tty_buffer *next;
struct llist_node free;
int used;
int size;
int commit;
int read;
int flags;
long unsigned int data[0];
};
5.8: ✅struct tty_buffer {
struct tty_buffer *next;
struct llist_node free;
int used;
int size;
int commit;
int read;
int flags;
long unsigned int data[0];
};
5.11: ✅struct tty_buffer {
struct tty_buffer *next;
struct llist_node free;
int used;
int size;
int commit;
int read;
int flags;
long unsigned int data[0];
};
5.13: ✅struct tty_buffer {
struct tty_buffer *next;
struct llist_node free;
int used;
int size;
int commit;
int read;
int flags;
long unsigned int data[0];
};
5.15: ✅struct tty_buffer {
struct tty_buffer *next;
struct llist_node free;
int used;
int size;
int commit;
int read;
int flags;
long unsigned int data[0];
};
5.19: ✅struct tty_buffer {
struct tty_buffer *next;
struct llist_node free;
int used;
int size;
int commit;
int read;
int flags;
long unsigned int data[0];
};
6.2: ✅struct tty_buffer {
struct tty_buffer *next;
struct llist_node free;
int used;
int size;
int commit;
int lookahead;
int read;
bool flags;
long unsigned int data[0];
};
6.5: ✅struct tty_buffer {
struct tty_buffer *next;
struct llist_node free;
int used;
int size;
int commit;
int lookahead;
int read;
bool flags;
long unsigned int data[0];
};
6.8: ✅struct tty_buffer {
struct tty_buffer *next;
struct llist_node free;
unsigned int used;
unsigned int size;
unsigned int commit;
unsigned int lookahead;
unsigned int read;
bool flags;
u8 data[0];
};
arm64: ✅struct tty_buffer {
struct tty_buffer *next;
struct llist_node free;
int used;
int size;
int commit;
int read;
int flags;
long unsigned int data[0];
};
armhf: ✅struct tty_buffer {
struct tty_buffer *next;
struct llist_node free;
int used;
int size;
int commit;
int read;
int flags;
long unsigned int data[0];
};
ppc64el: ✅struct tty_buffer {
struct tty_buffer *next;
struct llist_node free;
int used;
int size;
int commit;
int read;
int flags;
long unsigned int data[0];
};
riscv64: ✅struct tty_buffer {
struct tty_buffer *next;
struct llist_node free;
int used;
int size;
int commit;
int read;
int flags;
long unsigned int data[0];
};
aws: ✅struct tty_buffer {
struct tty_buffer *next;
struct llist_node free;
int used;
int size;
int commit;
int read;
int flags;
long unsigned int data[0];
};
azure: ✅struct tty_buffer {
struct tty_buffer *next;
struct llist_node free;
int used;
int size;
int commit;
int read;
int flags;
long unsigned int data[0];
};
gcp: ✅struct tty_buffer {
struct tty_buffer *next;
struct llist_node free;
int used;
int size;
int commit;
int read;
int flags;
long unsigned int data[0];
};
lowlatency: ✅struct tty_buffer {
struct tty_buffer *next;
struct llist_node free;
int used;
int size;
int commit;
int read;
int flags;
long unsigned int data[0];
};
Regular
4.4 and 4.8 ✅
4.8 and 4.10 ✅
4.10 and 4.13 ✅
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 ✅
5.8 and 5.11 ✅
5.11 and 5.13 ✅
5.13 and 5.15 ✅
5.15 and 5.19 ✅
5.19 and 6.2 ⚠️int lookahead
int flags ➡️ bool flags
6.2 and 6.5 ✅
6.5 and 6.8 ⚠️int used ➡️ unsigned int used
int size ➡️ unsigned int size
int commit ➡️ unsigned int commit
int lookahead ➡️ unsigned int lookahead
int read ➡️ unsigned int read
long unsigned int data[0] ➡️ u8 data[0]
amd64 and arm64 ✅
amd64 and armhf ✅
amd64 and ppc64el ✅
amd64 and riscv64 ✅
generic and aws ✅
generic and azure ✅
generic and gcp ✅
generic and lowlatency ✅