mirror of
https://github.com/kdave/btrfs-progs
synced 2024-12-14 18:37:03 +00:00
4e466c8b44
The devices in 'btrfs filesystem show' are now sorted by the device id, currently the order was undefined. Signed-off-by: David Sterba <dsterba@suse.cz> Signed-off-by: Chris Mason <chris.mason@fusionio.com>
15 lines
291 B
C
15 lines
291 B
C
/*
|
|
* taken from linux kernel include/list_sort.h
|
|
*/
|
|
#ifndef _LINUX_LIST_SORT_H
|
|
#define _LINUX_LIST_SORT_H
|
|
|
|
#include "kerncompat.h"
|
|
|
|
struct list_head;
|
|
|
|
void list_sort(void *priv, struct list_head *head,
|
|
int (*cmp)(void *priv, struct list_head *a,
|
|
struct list_head *b));
|
|
#endif
|