atm_dev
Regular
4.4
: Absent ⚠️
4.8
: ✅struct atm_dev {
const struct atmdev_ops *ops;
const struct atmphy_ops *phy;
const char *type;
int number;
void *dev_data;
void *phy_data;
long unsigned int flags;
struct list_head local;
struct list_head lecs;
unsigned char esi[6];
struct atm_cirange ci_range;
struct k_atm_dev_stats stats;
char signal;
int link_rate;
atomic_t refcnt;
spinlock_t lock;
struct proc_dir_entry *proc_entry;
char *proc_name;
struct device class_dev;
struct list_head dev_list;
};
4.10
: ✅struct atm_dev {
const struct atmdev_ops *ops;
const struct atmphy_ops *phy;
const char *type;
int number;
void *dev_data;
void *phy_data;
long unsigned int flags;
struct list_head local;
struct list_head lecs;
unsigned char esi[6];
struct atm_cirange ci_range;
struct k_atm_dev_stats stats;
char signal;
int link_rate;
atomic_t refcnt;
spinlock_t lock;
struct proc_dir_entry *proc_entry;
char *proc_name;
struct device class_dev;
struct list_head dev_list;
};
4.13
: ✅struct atm_dev {
const struct atmdev_ops *ops;
const struct atmphy_ops *phy;
const char *type;
int number;
void *dev_data;
void *phy_data;
long unsigned int flags;
struct list_head local;
struct list_head lecs;
unsigned char esi[6];
struct atm_cirange ci_range;
struct k_atm_dev_stats stats;
char signal;
int link_rate;
refcount_t refcnt;
spinlock_t lock;
struct proc_dir_entry *proc_entry;
char *proc_name;
struct device class_dev;
struct list_head dev_list;
};
4.15
: ✅struct atm_dev {
const struct atmdev_ops *ops;
const struct atmphy_ops *phy;
const char *type;
int number;
void *dev_data;
void *phy_data;
long unsigned int flags;
struct list_head local;
struct list_head lecs;
unsigned char esi[6];
struct atm_cirange ci_range;
struct k_atm_dev_stats stats;
char signal;
int link_rate;
refcount_t refcnt;
spinlock_t lock;
struct proc_dir_entry *proc_entry;
char *proc_name;
struct device class_dev;
struct list_head dev_list;
};
4.18
: ✅struct atm_dev {
const struct atmdev_ops *ops;
const struct atmphy_ops *phy;
const char *type;
int number;
void *dev_data;
void *phy_data;
long unsigned int flags;
struct list_head local;
struct list_head lecs;
unsigned char esi[6];
struct atm_cirange ci_range;
struct k_atm_dev_stats stats;
char signal;
int link_rate;
refcount_t refcnt;
spinlock_t lock;
struct proc_dir_entry *proc_entry;
char *proc_name;
struct device class_dev;
struct list_head dev_list;
};
5.0
: Absent ⚠️
5.3
: Absent ⚠️
5.4
: Absent ⚠️
5.8
: Absent ⚠️
5.11
: Absent ⚠️
5.13
: Absent ⚠️
5.15
: Absent ⚠️
5.19
: Absent ⚠️
6.2
: Absent ⚠️
6.5
: Absent ⚠️
6.8
: Absent ⚠️
arm64
: Absent ⚠️
armhf
: Absent ⚠️
ppc64el
: Absent ⚠️
riscv64
: Absent ⚠️
aws
: Absent ⚠️
azure
: Absent ⚠️
gcp
: Absent ⚠️
lowlatency
: Absent ⚠️
Regular
4.8
and 4.10
✅
4.10
and 4.13
⚠️atomic_t refcnt
➡️ refcount_t refcnt
4.13
and 4.15
✅
4.15
and 4.18
✅