dax_device_driverRegular
4.4: Absent ⚠️
4.8: Absent ⚠️
4.10: Absent ⚠️
4.13: Absent ⚠️
4.15: Absent ⚠️
4.18: Absent ⚠️
5.0: Absent ⚠️
5.3: ✅struct dax_device_driver {
struct device_driver drv;
struct list_head ids;
int match_always;
};
5.4: ✅struct dax_device_driver {
struct device_driver drv;
struct list_head ids;
int match_always;
};
5.8: ✅struct dax_device_driver {
struct device_driver drv;
struct list_head ids;
int match_always;
};
5.11: ✅struct dax_device_driver {
struct device_driver drv;
struct list_head ids;
int match_always;
int (*probe)(struct dev_dax *);
int (*remove)(struct dev_dax *);
};
5.13: ✅struct dax_device_driver {
struct device_driver drv;
struct list_head ids;
int match_always;
int (*probe)(struct dev_dax *);
void (*remove)(struct dev_dax *);
};
5.15: ✅struct dax_device_driver {
struct device_driver drv;
struct list_head ids;
int match_always;
int (*probe)(struct dev_dax *);
void (*remove)(struct dev_dax *);
};
5.19: ✅struct dax_device_driver {
struct device_driver drv;
struct list_head ids;
int match_always;
int (*probe)(struct dev_dax *);
void (*remove)(struct dev_dax *);
};
6.2: ✅struct dax_device_driver {
struct device_driver drv;
struct list_head ids;
int match_always;
int (*probe)(struct dev_dax *);
void (*remove)(struct dev_dax *);
};
6.5: ✅struct dax_device_driver {
struct device_driver drv;
struct list_head ids;
enum dax_driver_type type;
int (*probe)(struct dev_dax *);
void (*remove)(struct dev_dax *);
};
6.8: ✅struct dax_device_driver {
struct device_driver drv;
struct list_head ids;
enum dax_driver_type type;
int (*probe)(struct dev_dax *);
void (*remove)(struct dev_dax *);
};
arm64: ✅struct dax_device_driver {
struct device_driver drv;
struct list_head ids;
int match_always;
};
armhf: ✅struct dax_device_driver {
struct device_driver drv;
struct list_head ids;
int match_always;
};
ppc64el: ✅struct dax_device_driver {
struct device_driver drv;
struct list_head ids;
int match_always;
};
riscv64: ✅struct dax_device_driver {
struct device_driver drv;
struct list_head ids;
int match_always;
};
aws: ✅struct dax_device_driver {
struct device_driver drv;
struct list_head ids;
int match_always;
};
azure: ✅struct dax_device_driver {
struct device_driver drv;
struct list_head ids;
int match_always;
};
gcp: ✅struct dax_device_driver {
struct device_driver drv;
struct list_head ids;
int match_always;
};
lowlatency: ✅struct dax_device_driver {
struct device_driver drv;
struct list_head ids;
int match_always;
};
Regular
5.3 and 5.4 ✅
5.4 and 5.8 ✅
5.8 and 5.11 ⚠️int (*probe)(struct dev_dax *)
int (*remove)(struct dev_dax *)
5.11 and 5.13 ⚠️int (*remove)(struct dev_dax *) ➡️ void (*remove)(struct dev_dax *)
5.13 and 5.15 ✅
5.15 and 5.19 ✅
5.19 and 6.2 ✅
6.2 and 6.5 ⚠️enum dax_driver_type type
int match_always
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 ✅