mirror of
https://git.proxmox.com/git/mirror_zfs.git
synced 2026-05-22 02:27:36 +03:00
change libspl list member names to match kernel
This aids in debugging, so that we can use the same infrastructure to walk zfs's list_t in the kernel module and in the userland libraries (e.g. when debugging ztest). Reviewed-by: Serapheim Dimitropoulos <serapheim@delphix.com> Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov> Signed-off-by: Matthew Ahrens <mahrens@delphix.com> Closes #10236
This commit is contained in:
@@ -34,8 +34,8 @@ extern "C" {
|
||||
#endif
|
||||
|
||||
struct list_node {
|
||||
struct list_node *list_next;
|
||||
struct list_node *list_prev;
|
||||
struct list_node *next;
|
||||
struct list_node *prev;
|
||||
};
|
||||
|
||||
struct list {
|
||||
|
||||
Reference in New Issue
Block a user