⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 scatterlist.h

📁 讲述linux的初始化过程
💻 H
字号:
#ifndef _ASM_IA64_SCATTERLIST_H#define _ASM_IA64_SCATTERLIST_H/* * Copyright (C) 1998, 1999 Hewlett-Packard Co * Copyright (C) 1998, 1999 David Mosberger-Tang <davidm@hpl.hp.com> */struct scatterlist {	char *address;		/* location data is to be transferred to */	/*	 * Location of actual buffer if ADDRESS points to a DMA	 * indirection buffer, NULL otherwise:	 */	char *alt_address;	char *orig_address;	/* Save away the original buffer address (used by pci-dma.c) */	unsigned int length;	/* buffer length */};#define ISA_DMA_THRESHOLD	(~0UL)#endif /* _ASM_IA64_SCATTERLIST_H */

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -