![]() |
|
|||
0001 /* SPDX-License-Identifier: GPL-2.0 */ 0002 #ifndef _LINUX_EARLYCPIO_H 0003 #define _LINUX_EARLYCPIO_H 0004 0005 #include <linux/types.h> 0006 0007 #define MAX_CPIO_FILE_NAME 18 0008 0009 struct cpio_data { 0010 void *data; 0011 size_t size; 0012 char name[MAX_CPIO_FILE_NAME]; 0013 }; 0014 0015 struct cpio_data find_cpio_data(const char *path, void *data, size_t len, 0016 long *offset); 0017 0018 #endif /* _LINUX_EARLYCPIO_H */
[ Source navigation ] | [ Diff markup ] | [ Identifier search ] | [ general search ] |
This page was automatically generated by the 2.1.0 LXR engine. The LXR team |
![]() ![]() |