亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? space.c

?? 內核是系統的心臟
?? C
字號:
/*
 * INET		An implementation of the TCP/IP protocol suite for the LINUX
 *		operating system.  INET is implemented using the  BSD Socket
 *		interface as the means of communication with the user level.
 *
 *		Holds initial configuration information for devices.
 *
 * NOTE:	This file is a nice idea, but its current format does not work
 *		well for drivers that support multiple units, like the SLIP
 *		driver.  We should actually have only one pointer to a driver
 *		here, with the driver knowing how many units it supports.
 *		Currently, the SLIP driver abuses the "base_addr" integer
 *		field of the 'device' structure to store the unit number...
 *		-FvK
 *
 * Version:	@(#)Space.c	1.0.7	08/12/93
 *
 * Authors:	Ross Biro, <bir7@leland.Stanford.Edu>
 *		Fred N. van Kempen, <waltje@uWalt.NL.Mugnet.ORG>
 *		Donald J. Becker, <becker@super.org>
 *
 *		This program is free software; you can redistribute it and/or
 *		modify it under the terms of the GNU General Public License
 *		as published by the Free Software Foundation; either version
 *		2 of the License, or (at your option) any later version.
 */
#include <linux/config.h>
#include <linux/ddi.h>
#include "dev.h"

#define LOOPBACK			/* always present, right?	*/

#define	NEXT_DEV	NULL


/* A unifed ethernet device probe.  This is the easiest way to have every
   ethernet adaptor have the name "eth[0123...]".
   */

extern int ultra_probe(struct device *dev);
extern int wd_probe(struct device *dev);
extern int el2_probe(struct device *dev);
extern int ne_probe(struct device *dev);
extern int hp_probe(struct device *dev);
extern int znet_probe(struct device *);
extern int express_probe(struct device *);
extern int el3_probe(struct device *);
extern int at1500_probe(struct device *);
extern int at1700_probe(struct device *);
extern int depca_probe(struct device *);
extern int el1_probe(struct device *);
extern int el16_probe(struct device *);
extern int elplus_probe(struct device *);
extern int ac3200_probe(struct device *);
extern int e2100_probe(struct device *);

/* Detachable devices ("pocket adaptors" and special PCMCIA drivers). */
extern int atp_init(struct device *);
extern int d_link_init(struct device *);

static int
ethif_probe(struct device *dev)
{
    short base_addr = dev->base_addr;

    if (base_addr < 0  ||  base_addr == 1)
	return 1;		/* ENXIO */

    if (1
#if defined(CONFIG_ULTRA)
	&& ultra_probe(dev)
#endif
#if defined(CONFIG_WD80x3) || defined(WD80x3)
	&& wd_probe(dev)
#endif
#if defined(CONFIG_EL2) || defined(EL2)	/* 3c503 */
	&& el2_probe(dev)
#endif
#if defined(CONFIG_NE2000) || defined(NE2000)
	&& ne_probe(dev)
#endif
#if defined(CONFIG_HPLAN) || defined(HPLAN)
	&& hp_probe(dev)
#endif
#ifdef CONFIG_AT1500
	&& at1500_probe(dev)
#endif
#ifdef CONFIG_AT1700
	&& at1700_probe(dev)
#endif
#ifdef CONFIG_EL3		/* 3c509 */
	&& el3_probe(dev)
#endif
#ifdef CONFIG_ZNET		/* Zenith Z-Note and some IBM Thinkpads. */
	&& znet_probe(dev)
#endif
#ifdef CONFIG_EEXPRESS		/* Intel EtherExpress */
	&& express_probe(dev)
#endif
#ifdef CONFIG_DEPCA		/* DEC DEPCA */
	&& depca_probe(dev)
#endif
#ifdef CONFIG_EL1		/* 3c501 */
	&& el1_probe(dev)
#endif
#ifdef CONFIG_EL16		/* 3c507 */
	&& el16_probe(dev)
#endif
#ifdef CONFIG_ELPLUS		/* 3c505 */
	&& elplus_probe(dev)
#endif
#ifdef CONFIG_AC3200		/* Ansel Communications EISA 3200. */
	&& ac3200_probe(dev)
#endif
#ifdef CONFIG_E2100		/* Cabletron E21xx series. */
	&& e2100_probe(dev)
#endif
	&& 1 ) {
	return 1;	/* -ENODEV or -EAGAIN would be more accurate. */
    }
    return 0;
}


/* This remains seperate because it requires the addr and IRQ to be set. */
#if defined(D_LINK) || defined(CONFIG_DE600)
static struct device d_link_dev = {
    "dl0", 0, 0, 0, 0, D_LINK_IO, D_LINK_IRQ, 0, 0, 0, NEXT_DEV, d_link_init };
#   undef NEXT_DEV
#   define NEXT_DEV	(&d_link_dev)
#endif

/* Run-time ATtachable (Pocket) devices have a different (not "eth#") name. */
#ifdef CONFIG_ATP		/* AT-LAN-TEC (RealTek) pocket adaptor. */
static struct device atp_dev = {
    "atp0", 0, 0, 0, 0, 0, 0, 0, 0, 0, NEXT_DEV, atp_init, /* ... */ };
#   undef NEXT_DEV
#   define NEXT_DEV	(&atp_dev)
#endif

/* The first device defaults to I/O base '0', which means autoprobe. */
#ifndef ETH0_ADDR
# define ETH0_ADDR 0
#endif
#ifndef ETH0_IRQ
# define ETH0_IRQ 0
#endif
/* "eth0" defaults to autoprobe (== 0), other use a base of 0xffe0 (== -0x20),
   which means "don't probe".  These entries exist to only to provide empty
   slots which may be enabled at boot-time. */

static struct device eth3_dev = {
    "eth3", 0,0,0,0,0xffe0 /* I/O base*/, 0,0,0,0, NEXT_DEV, ethif_probe };
static struct device eth2_dev = {
    "eth2", 0,0,0,0,0xffe0 /* I/O base*/, 0,0,0,0, &eth3_dev, ethif_probe };
static struct device eth1_dev = {
    "eth1", 0,0,0,0,0xffe0 /* I/O base*/, 0,0,0,0, &eth2_dev, ethif_probe };

static struct device eth0_dev = {
    "eth0", 0, 0, 0, 0, ETH0_ADDR, ETH0_IRQ, 0, 0, 0, &eth1_dev, ethif_probe };

#   undef NEXT_DEV
#   define NEXT_DEV	(&eth0_dev)

#if defined(PLIP) || defined(CONFIG_PLIP)
    extern int plip_init(struct device *);
    static struct device plip2_dev = {
	"plip2", 0, 0, 0, 0, 0x278, 2, 0, 0, 0, NEXT_DEV, plip_init, };
    static struct device plip1_dev = {
	"plip1", 0, 0, 0, 0, 0x378, 7, 0, 0, 0, &plip2_dev, plip_init, };
    static struct device plip0_dev = {
	"plip0", 0, 0, 0, 0, 0x3BC, 5, 0, 0, 0, &plip1_dev, plip_init, };
#   undef NEXT_DEV
#   define NEXT_DEV	(&plip0_dev)
#endif  /* PLIP */

#if defined(SLIP) || defined(CONFIG_SLIP)
    extern int slip_init(struct device *);
    static struct device slip3_dev = {
	"sl3",			/* Internal SLIP driver, channel 3	*/
	0x0,			/* recv memory end			*/
	0x0,			/* recv memory start			*/
	0x0,			/* memory end				*/
	0x0,			/* memory start				*/
	0x3,			/* base I/O address			*/
	0,			/* IRQ					*/
	0, 0, 0,		/* flags				*/
	NEXT_DEV,		/* next device				*/
	slip_init		/* slip_init should set up the rest	*/
    };
    static struct device slip2_dev = {
	"sl2",			/* Internal SLIP driver, channel 2	*/
	0x0,			/* recv memory end			*/
	0x0,			/* recv memory start			*/
	0x0,			/* memory end				*/
	0x0,			/* memory start				*/
	0x2,			/* base I/O address			*/
	0,			/* IRQ					*/
	0, 0, 0,		/* flags				*/
	&slip3_dev,		/* next device				*/
	slip_init		/* slip_init should set up the rest	*/
    };
    static struct device slip1_dev = {
	"sl1",			/* Internal SLIP driver, channel 1	*/
	0x0,			/* recv memory end			*/
	0x0,			/* recv memory start			*/
	0x0,			/* memory end				*/
	0x0,			/* memory start				*/
	0x1,			/* base I/O address			*/
	0,			/* IRQ					*/
	0, 0, 0,		/* flags				*/
	&slip2_dev,		/* next device				*/
	slip_init		/* slip_init should set up the rest	*/
    };
    static struct device slip0_dev = {
	"sl0",			/* Internal SLIP driver, channel 0	*/
	0x0,			/* recv memory end			*/
	0x0,			/* recv memory start			*/
	0x0,			/* memory end				*/
	0x0,			/* memory start				*/
	0x0,			/* base I/O address			*/
	0,			/* IRQ					*/
	0, 0, 0,		/* flags				*/
	&slip1_dev,		/* next device				*/
	slip_init		/* slip_init should set up the rest	*/
    };
#   undef	NEXT_DEV
#   define	NEXT_DEV	(&slip0_dev)
#endif	/* SLIP */
  
#if defined(CONFIG_PPP)
extern int ppp_init(struct device *);
static struct device ppp3_dev = {
    "ppp3", 0x0, 0x0, 0x0, 0x0, 3, 0, 0, 0, 0, NEXT_DEV,  ppp_init, };
static struct device ppp2_dev = {
    "ppp2", 0x0, 0x0, 0x0, 0x0, 2, 0, 0, 0, 0, &ppp3_dev, ppp_init, };
static struct device ppp1_dev = {
    "ppp1", 0x0, 0x0, 0x0, 0x0, 1, 0, 0, 0, 0, &ppp2_dev, ppp_init, };
static struct device ppp0_dev = {
    "ppp0", 0x0, 0x0, 0x0, 0x0, 0, 0, 0, 0, 0, &ppp1_dev, ppp_init, };
#undef NEXT_DEV
#define NEXT_DEV (&ppp0_dev)
#endif   /* PPP */

#ifdef LOOPBACK
    extern int loopback_init(struct device *dev);
    static struct device loopback_dev = {
	"lo",			/* Software Loopback interface		*/
	0x0,			/* recv memory end			*/
	0x0,			/* recv memory start			*/
	0x0,			/* memory end				*/
	0x0,			/* memory start				*/
	0,			/* base I/O address			*/
	0,			/* IRQ					*/
	0, 0, 0,		/* flags				*/
	NEXT_DEV,		/* next device				*/
	loopback_init		/* loopback_init should set up the rest	*/
    };
#   undef	NEXT_DEV
#   define	NEXT_DEV	(&loopback_dev)
#endif


struct device *dev_base = NEXT_DEV;

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
欧美日韩在线三级| 国产乱码精品一区二区三区忘忧草 | 国产米奇在线777精品观看| 91精品一区二区三区久久久久久 | 96av麻豆蜜桃一区二区| 中文字幕一区二区三区在线不卡| 国产成人99久久亚洲综合精品| 国产亚洲一区二区在线观看| 粉嫩一区二区三区在线看| 综合激情网...| 欧美日韩中文字幕一区| 蜜臀久久99精品久久久画质超高清 | 免费在线观看一区二区三区| 欧美男女性生活在线直播观看| 日韩高清在线不卡| 精品国产一区二区在线观看| 国产91露脸合集magnet| 亚洲视频一二区| 欧美另类高清zo欧美| 狠狠色丁香婷婷综合久久片| 国产精品久久久一本精品 | 欧美日韩中文字幕一区二区| 六月丁香综合在线视频| 久久久久久免费| 91香蕉视频在线| 琪琪久久久久日韩精品| 国产色综合久久| 欧美偷拍一区二区| 国产综合久久久久久久久久久久 | 亚洲丝袜制服诱惑| 欧美日本韩国一区| 国产91精品一区二区麻豆亚洲| 一区二区三国产精华液| 精品99一区二区三区| 91久久精品网| 国产麻豆精品在线| 亚洲成人7777| 国产精品久久久久三级| 日韩亚洲欧美在线观看| 精品不卡在线视频| 国产精品一二三区在线| 亚洲国产精品一区二区久久恐怖片| 精品国产sm最大网站| 色爱区综合激月婷婷| 国产麻豆成人精品| 婷婷夜色潮精品综合在线| 欧美激情综合网| 日韩免费一区二区三区在线播放| 99久久婷婷国产综合精品| 精品一区二区三区在线播放视频| 亚洲免费观看高清完整版在线观看 | 91精品国模一区二区三区| 成人看片黄a免费看在线| 视频在线在亚洲| 亚洲色图一区二区| 久久九九久久九九| 日韩欧美国产1| 欧美日韩国产高清一区二区| 色婷婷久久久亚洲一区二区三区 | 欧美偷拍一区二区| 99综合电影在线视频| 国产乱码精品一区二区三| 蜜臂av日日欢夜夜爽一区| 亚洲一区二区欧美日韩| 最好看的中文字幕久久| 久久久美女艺术照精彩视频福利播放| 欧美放荡的少妇| 精品视频在线看| 欧美日韩在线三区| 欧美色视频一区| 在线免费观看日韩欧美| 99麻豆久久久国产精品免费优播| 国产精品一区二区在线观看不卡| 黑人精品欧美一区二区蜜桃| 美国毛片一区二区三区| 麻豆91精品视频| 免费的国产精品| 青草av.久久免费一区| 奇米影视在线99精品| 免费成人av资源网| 亚洲国产精品久久久久秋霞影院| 国产成人av在线影院| 亚洲成av人综合在线观看| 精品99999| 久久综合色综合88| 欧美一区二区三区免费在线看 | 国产精品情趣视频| 欧美性一区二区| 不卡高清视频专区| 国产精品一区二区果冻传媒| 蜜臀av性久久久久蜜臀aⅴ| 国产精品丝袜一区| 欧美国产综合一区二区| 欧美国产欧美亚州国产日韩mv天天看完整| 欧美日韩电影一区| 日韩一区二区三| 久久亚洲一区二区三区四区| 亚洲国产高清在线观看视频| 欧美日韩国产不卡| 国产精品1区二区.| 美女任你摸久久| 欧美96一区二区免费视频| 青青草成人在线观看| 8v天堂国产在线一区二区| 另类综合日韩欧美亚洲| 中文字幕国产一区二区| 国产精品久久看| 一区二区三区四区高清精品免费观看| 亚洲精品欧美二区三区中文字幕| 亚洲一区影音先锋| 国产精品麻豆久久久| 精品国精品自拍自在线| 久久综合九色综合欧美就去吻| 2023国产精品自拍| 欧美国产视频在线| 一级女性全黄久久生活片免费| av欧美精品.com| 污片在线观看一区二区| 国产中文字幕精品| 日韩视频一区二区三区在线播放 | 91精品国产乱码久久蜜臀| 国产精品久久久久久户外露出 | 中文字幕一区二区不卡| 91久久香蕉国产日韩欧美9色| 91理论电影在线观看| 欧美一区二区性放荡片| 26uuu精品一区二区| 亚洲一区二区三区四区在线观看| www.av亚洲| 日韩一本二本av| 亚洲韩国精品一区| 欧美日韩视频不卡| 五月婷婷综合网| 91在线porny国产在线看| 久久久国产午夜精品| 日韩电影在线一区| 欧美性一级生活| 国产精品国产三级国产aⅴ入口| 午夜精品久久久久久| 成人高清伦理免费影院在线观看| 精品久久久久久久久久久久久久久久久 | 国产成人av一区二区| 不卡高清视频专区| 精品卡一卡二卡三卡四在线| 青椒成人免费视频| 国产精品综合av一区二区国产馆| 91精品国产色综合久久不卡电影 | 555www色欧美视频| 亚洲综合视频在线| 95精品视频在线| 国产精品久久久久久久久动漫| 2欧美一区二区三区在线观看视频 337p粉嫩大胆噜噜噜噜噜91av | 欧美大度的电影原声| 综合欧美一区二区三区| 国产99精品国产| 精品国产免费久久| 麻豆精品国产传媒mv男同| 欧美日韩一区三区| 一区二区三区电影在线播| 91网站在线播放| 国产精品久久久久aaaa| 国产精品99久久久久久似苏梦涵| 91精品国产手机| 日日摸夜夜添夜夜添国产精品| 色播五月激情综合网| 亚洲欧美视频在线观看视频| 丁香婷婷深情五月亚洲| 中文字幕av一区二区三区高 | 国产精品久久久一本精品| 国产老肥熟一区二区三区| 欧美精品一区二区久久久| 久草精品在线观看| 欧美成人女星排名| 精品夜夜嗨av一区二区三区| 精品sm在线观看| 国产高清精品久久久久| 国产日本欧美一区二区| 东方aⅴ免费观看久久av| 中文字幕在线观看一区二区| 色婷婷精品大在线视频| 亚洲国产精品自拍| 一道本成人在线| 蜜臀久久久99精品久久久久久| 国产精品色婷婷久久58| 欧美综合久久久| 懂色av噜噜一区二区三区av| 综合激情成人伊人| 久久久久久久久久久久久女国产乱| caoporen国产精品视频| 黄色日韩三级电影| 免费日本视频一区| 奇米888四色在线精品| 亚洲欧美韩国综合色| 精品国产免费久久| 欧美变态口味重另类| 欧美精品日韩一本| 在线亚洲高清视频| 色婷婷综合激情| 欧美天堂亚洲电影院在线播放| 国产福利精品一区|