]> Pileus Git - ~andy/linux/blob - include/linux/earlycpio.h
Merge tag 'nfs-for-3.14-2' of git://git.linux-nfs.org/projects/trondmy/linux-nfs
[~andy/linux] / include / linux / earlycpio.h
1 #ifndef _LINUX_EARLYCPIO_H
2 #define _LINUX_EARLYCPIO_H
3
4 #include <linux/types.h>
5
6 #define MAX_CPIO_FILE_NAME 18
7
8 struct cpio_data {
9         void *data;
10         size_t size;
11         char name[MAX_CPIO_FILE_NAME];
12 };
13
14 struct cpio_data find_cpio_data(const char *path, void *data, size_t len,
15                                 long *offset);
16
17 #endif /* _LINUX_EARLYCPIO_H */