summaryrefslogtreecommitdiff
path: root/include/linux/earlycpio.h
blob: c70519267c7781375b7bf9c1baba783ceeabfc02 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/* SPDX-License-Identifier: GPL-2.0 */
#ifndef _LINUX_EARLYCPIO_H
#define _LINUX_EARLYCPIO_H

#include <linux/types.h>

#define MAX_CPIO_FILE_NAME 18

struct cpio_data {
	void *data;
	size_t size;
	char name[MAX_CPIO_FILE_NAME];
};

struct cpio_data find_cpio_data(const char *path, void *data, size_t len,
				long *offset);

#endif /* _LINUX_EARLYCPIO_H */
t/Documentation/kernel-hacking?id=379af13b31fa8a36ad4abd59a5c511f25c5d4d42'>docs: locking: Discourage from calling disable_irq() in atomicAlexander Sverdlin 2022-12-12Merge tag 'timers-core-2022-12-10' of git://git.kernel.org/pub/scm/linux/kern...Linus Torvalds 2022-11-24timers: Update the documentation to reflect on the new timer_shutdown() APISteven Rostedt (Google) 2022-11-24Documentation: Replace del_timer/del_timer_sync()Thomas Gleixner 2022-11-24Documentation: Remove bogus claim about del_timer_sync()Thomas Gleixner 2022-10-24Documentation: Fix spelling mistake in hacking.rstMushahid Hussain 2022-07-14docs: process: remove outdated submitting-drivers.rstLukas Bulwahn 2022-04-05Documentation: kernel-hacking: minor edits for styleKonstantin Ryabitsev