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

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

?? kcompat_ethtool.c

?? DELL755 Intel 網卡驅動
?? C
?? 第 1 頁 / 共 2 頁
字號:
/*******************************************************************************  Intel PRO/1000 Linux driver  Copyright(c) 1999 - 2008 Intel Corporation.  This program is free software; you can redistribute it and/or modify it  under the terms and conditions of the GNU General Public License,  version 2, as published by the Free Software Foundation.  This program is distributed in the hope it will be useful, but WITHOUT  ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or  FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for  more details.  You should have received a copy of the GNU General Public License along with  this program; if not, write to the Free Software Foundation, Inc.,  51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA.  The full GNU General Public License is included in this distribution in  the file called "COPYING".  Contact Information:  Linux NICS <linux.nics@intel.com>  e1000-devel Mailing List <e1000-devel@lists.sourceforge.net>  Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497*******************************************************************************//* * net/core/ethtool.c - Ethtool ioctl handler * Copyright (c) 2003 Matthew Wilcox <matthew@wil.cx> * * This file is where we call all the ethtool_ops commands to get * the information ethtool needs.  We fall back to calling do_ioctl() * for drivers which haven't been converted to ethtool_ops yet. * * It's GPL, stupid. * * Modification by sfeldma@pobox.com to work as backward compat * solution for pre-ethtool_ops kernels. * 	- copied struct ethtool_ops from ethtool.h * 	- defined SET_ETHTOOL_OPS * 	- put in some #ifndef NETIF_F_xxx wrappers * 	- changes refs to dev->ethtool_ops to ethtool_ops * 	- changed dev_ethtool to ethtool_ioctl *      - remove EXPORT_SYMBOL()s *      - added _kc_ prefix in built-in ethtool_op_xxx ops. */#include <linux/module.h>#include <linux/types.h>#include <linux/errno.h>#include <linux/mii.h>#include <linux/ethtool.h>#include <linux/netdevice.h>#include <asm/uaccess.h>#include "kcompat.h"#undef SUPPORTED_10000baseT_Full#define SUPPORTED_10000baseT_Full	(1 << 12)#undef ADVERTISED_10000baseT_Full#define ADVERTISED_10000baseT_Full	(1 << 12)#undef SPEED_10000#define SPEED_10000		10000#undef ethtool_ops#define ethtool_ops _kc_ethtool_opsstruct _kc_ethtool_ops {	int  (*get_settings)(struct net_device *, struct ethtool_cmd *);	int  (*set_settings)(struct net_device *, struct ethtool_cmd *);	void (*get_drvinfo)(struct net_device *, struct ethtool_drvinfo *);	int  (*get_regs_len)(struct net_device *);	void (*get_regs)(struct net_device *, struct ethtool_regs *, void *);	void (*get_wol)(struct net_device *, struct ethtool_wolinfo *);	int  (*set_wol)(struct net_device *, struct ethtool_wolinfo *);	u32  (*get_msglevel)(struct net_device *);	void (*set_msglevel)(struct net_device *, u32);	int  (*nway_reset)(struct net_device *);	u32  (*get_link)(struct net_device *);	int  (*get_eeprom_len)(struct net_device *);	int  (*get_eeprom)(struct net_device *, struct ethtool_eeprom *, u8 *);	int  (*set_eeprom)(struct net_device *, struct ethtool_eeprom *, u8 *);	int  (*get_coalesce)(struct net_device *, struct ethtool_coalesce *);	int  (*set_coalesce)(struct net_device *, struct ethtool_coalesce *);	void (*get_ringparam)(struct net_device *, struct ethtool_ringparam *);	int  (*set_ringparam)(struct net_device *, struct ethtool_ringparam *);	void (*get_pauseparam)(struct net_device *,	                       struct ethtool_pauseparam*);	int  (*set_pauseparam)(struct net_device *,	                       struct ethtool_pauseparam*);	u32  (*get_rx_csum)(struct net_device *);	int  (*set_rx_csum)(struct net_device *, u32);	u32  (*get_tx_csum)(struct net_device *);	int  (*set_tx_csum)(struct net_device *, u32);	u32  (*get_sg)(struct net_device *);	int  (*set_sg)(struct net_device *, u32);	u32  (*get_tso)(struct net_device *);	int  (*set_tso)(struct net_device *, u32);	int  (*self_test_count)(struct net_device *);	void (*self_test)(struct net_device *, struct ethtool_test *, u64 *);	void (*get_strings)(struct net_device *, u32 stringset, u8 *);	int  (*phys_id)(struct net_device *, u32);	int  (*get_stats_count)(struct net_device *);	void (*get_ethtool_stats)(struct net_device *, struct ethtool_stats *,	                          u64 *);} *ethtool_ops = NULL;#undef SET_ETHTOOL_OPS#define SET_ETHTOOL_OPS(netdev, ops) (ethtool_ops = (ops))/* * Some useful ethtool_ops methods that are device independent. If we find that * all drivers want to do the same thing here, we can turn these into dev_() * function calls. */#undef ethtool_op_get_link#define ethtool_op_get_link _kc_ethtool_op_get_linku32 _kc_ethtool_op_get_link(struct net_device *dev){	return netif_carrier_ok(dev) ? 1 : 0;}#undef ethtool_op_get_tx_csum#define ethtool_op_get_tx_csum _kc_ethtool_op_get_tx_csumu32 _kc_ethtool_op_get_tx_csum(struct net_device *dev){#ifdef NETIF_F_IP_CSUM	return (dev->features & NETIF_F_IP_CSUM) != 0;#else	return 0;#endif}#undef ethtool_op_set_tx_csum#define ethtool_op_set_tx_csum _kc_ethtool_op_set_tx_csumint _kc_ethtool_op_set_tx_csum(struct net_device *dev, u32 data){#ifdef NETIF_F_IP_CSUM	if (data)#ifdef NETIF_F_IPV6_CSUM		dev->features |= (NETIF_F_IP_CSUM | NETIF_F_IPV6_CSUM);	else		dev->features &= ~(NETIF_F_IP_CSUM | NETIF_F_IPV6_CSUM);#else		dev->features |= NETIF_F_IP_CSUM;	else		dev->features &= ~NETIF_F_IP_CSUM;#endif#endif	return 0;}#undef ethtool_op_get_sg#define ethtool_op_get_sg _kc_ethtool_op_get_sgu32 _kc_ethtool_op_get_sg(struct net_device *dev){#ifdef NETIF_F_SG	return (dev->features & NETIF_F_SG) != 0;#else	return 0;#endif}#undef ethtool_op_set_sg#define ethtool_op_set_sg _kc_ethtool_op_set_sgint _kc_ethtool_op_set_sg(struct net_device *dev, u32 data){#ifdef NETIF_F_SG	if (data)		dev->features |= NETIF_F_SG;	else		dev->features &= ~NETIF_F_SG;#endif	return 0;}#undef ethtool_op_get_tso#define ethtool_op_get_tso _kc_ethtool_op_get_tsou32 _kc_ethtool_op_get_tso(struct net_device *dev){#ifdef NETIF_F_TSO	return (dev->features & NETIF_F_TSO) != 0;#else	return 0;#endif}#undef ethtool_op_set_tso#define ethtool_op_set_tso _kc_ethtool_op_set_tsoint _kc_ethtool_op_set_tso(struct net_device *dev, u32 data){#ifdef NETIF_F_TSO	if (data)		dev->features |= NETIF_F_TSO;	else		dev->features &= ~NETIF_F_TSO;#endif	return 0;}/* Handlers for each ethtool command */static int ethtool_get_settings(struct net_device *dev, void *useraddr){	struct ethtool_cmd cmd = { ETHTOOL_GSET };	int err;	if (!ethtool_ops->get_settings)		return -EOPNOTSUPP;	err = ethtool_ops->get_settings(dev, &cmd);	if (err < 0)		return err;	if (copy_to_user(useraddr, &cmd, sizeof(cmd)))		return -EFAULT;	return 0;}static int ethtool_set_settings(struct net_device *dev, void *useraddr){	struct ethtool_cmd cmd;	if (!ethtool_ops->set_settings)		return -EOPNOTSUPP;	if (copy_from_user(&cmd, useraddr, sizeof(cmd)))		return -EFAULT;	return ethtool_ops->set_settings(dev, &cmd);}static int ethtool_get_drvinfo(struct net_device *dev, void *useraddr){	struct ethtool_drvinfo info;	struct ethtool_ops *ops = ethtool_ops;	if (!ops->get_drvinfo)		return -EOPNOTSUPP;	memset(&info, 0, sizeof(info));	info.cmd = ETHTOOL_GDRVINFO;	ops->get_drvinfo(dev, &info);	if (ops->self_test_count)		info.testinfo_len = ops->self_test_count(dev);	if (ops->get_stats_count)		info.n_stats = ops->get_stats_count(dev);	if (ops->get_regs_len)		info.regdump_len = ops->get_regs_len(dev);	if (ops->get_eeprom_len)		info.eedump_len = ops->get_eeprom_len(dev);	if (copy_to_user(useraddr, &info, sizeof(info)))		return -EFAULT;	return 0;}static int ethtool_get_regs(struct net_device *dev, char *useraddr){	struct ethtool_regs regs;	struct ethtool_ops *ops = ethtool_ops;	void *regbuf;	int reglen, ret;	if (!ops->get_regs || !ops->get_regs_len)		return -EOPNOTSUPP;	if (copy_from_user(&regs, useraddr, sizeof(regs)))		return -EFAULT;	reglen = ops->get_regs_len(dev);	if (regs.len > reglen)		regs.len = reglen;	regbuf = kmalloc(reglen, GFP_USER);	if (!regbuf)		return -ENOMEM;	ops->get_regs(dev, &regs, regbuf);	ret = -EFAULT;	if (copy_to_user(useraddr, &regs, sizeof(regs)))		goto out;	useraddr += offsetof(struct ethtool_regs, data);	if (copy_to_user(useraddr, regbuf, reglen))		goto out;	ret = 0;out:	kfree(regbuf);	return ret;}static int ethtool_get_wol(struct net_device *dev, char *useraddr){	struct ethtool_wolinfo wol = { ETHTOOL_GWOL };	if (!ethtool_ops->get_wol)		return -EOPNOTSUPP;	ethtool_ops->get_wol(dev, &wol);	if (copy_to_user(useraddr, &wol, sizeof(wol)))		return -EFAULT;	return 0;}static int ethtool_set_wol(struct net_device *dev, char *useraddr){	struct ethtool_wolinfo wol;	if (!ethtool_ops->set_wol)		return -EOPNOTSUPP;	if (copy_from_user(&wol, useraddr, sizeof(wol)))		return -EFAULT;	return ethtool_ops->set_wol(dev, &wol);}static int ethtool_get_msglevel(struct net_device *dev, char *useraddr){	struct ethtool_value edata = { ETHTOOL_GMSGLVL };	if (!ethtool_ops->get_msglevel)		return -EOPNOTSUPP;	edata.data = ethtool_ops->get_msglevel(dev);	if (copy_to_user(useraddr, &edata, sizeof(edata)))		return -EFAULT;	return 0;}static int ethtool_set_msglevel(struct net_device *dev, char *useraddr){	struct ethtool_value edata;	if (!ethtool_ops->set_msglevel)		return -EOPNOTSUPP;	if (copy_from_user(&edata, useraddr, sizeof(edata)))		return -EFAULT;	ethtool_ops->set_msglevel(dev, edata.data);	return 0;}static int ethtool_nway_reset(struct net_device *dev){	if (!ethtool_ops->nway_reset)		return -EOPNOTSUPP;	return ethtool_ops->nway_reset(dev);}static int ethtool_get_link(struct net_device *dev, void *useraddr){	struct ethtool_value edata = { ETHTOOL_GLINK };	if (!ethtool_ops->get_link)		return -EOPNOTSUPP;	edata.data = ethtool_ops->get_link(dev);	if (copy_to_user(useraddr, &edata, sizeof(edata)))		return -EFAULT;	return 0;}static int ethtool_get_eeprom(struct net_device *dev, void *useraddr){	struct ethtool_eeprom eeprom;	struct ethtool_ops *ops = ethtool_ops;	u8 *data;	int ret;	if (!ops->get_eeprom || !ops->get_eeprom_len)		return -EOPNOTSUPP;	if (copy_from_user(&eeprom, useraddr, sizeof(eeprom)))		return -EFAULT;	/* Check for wrap and zero */	if (eeprom.offset + eeprom.len <= eeprom.offset)		return -EINVAL;	/* Check for exceeding total eeprom len */	if (eeprom.offset + eeprom.len > ops->get_eeprom_len(dev))		return -EINVAL;	data = kmalloc(eeprom.len, GFP_USER);	if (!data)		return -ENOMEM;	ret = -EFAULT;	if (copy_from_user(data, useraddr + sizeof(eeprom), eeprom.len))		goto out;	ret = ops->get_eeprom(dev, &eeprom, data);	if (ret)		goto out;	ret = -EFAULT;	if (copy_to_user(useraddr, &eeprom, sizeof(eeprom)))		goto out;	if (copy_to_user(useraddr + sizeof(eeprom), data, eeprom.len))		goto out;	ret = 0;out:	kfree(data);	return ret;}static int ethtool_set_eeprom(struct net_device *dev, void *useraddr){	struct ethtool_eeprom eeprom;	struct ethtool_ops *ops = ethtool_ops;	u8 *data;	int ret;	if (!ops->set_eeprom || !ops->get_eeprom_len)		return -EOPNOTSUPP;	if (copy_from_user(&eeprom, useraddr, sizeof(eeprom)))		return -EFAULT;	/* Check for wrap and zero */	if (eeprom.offset + eeprom.len <= eeprom.offset)		return -EINVAL;	/* Check for exceeding total eeprom len */	if (eeprom.offset + eeprom.len > ops->get_eeprom_len(dev))		return -EINVAL;	data = kmalloc(eeprom.len, GFP_USER);	if (!data)		return -ENOMEM;	ret = -EFAULT;	if (copy_from_user(data, useraddr + sizeof(eeprom), eeprom.len))		goto out;	ret = ops->set_eeprom(dev, &eeprom, data);	if (ret)		goto out;	if (copy_to_user(useraddr + sizeof(eeprom), data, eeprom.len))		ret = -EFAULT;out:	kfree(data);	return ret;}static int ethtool_get_coalesce(struct net_device *dev, void *useraddr){	struct ethtool_coalesce coalesce = { ETHTOOL_GCOALESCE };	if (!ethtool_ops->get_coalesce)		return -EOPNOTSUPP;	ethtool_ops->get_coalesce(dev, &coalesce);	if (copy_to_user(useraddr, &coalesce, sizeof(coalesce)))		return -EFAULT;	return 0;}static int ethtool_set_coalesce(struct net_device *dev, void *useraddr){	struct ethtool_coalesce coalesce;	if (!ethtool_ops->get_coalesce)		return -EOPNOTSUPP;	if (copy_from_user(&coalesce, useraddr, sizeof(coalesce)))		return -EFAULT;	return ethtool_ops->set_coalesce(dev, &coalesce);}static int ethtool_get_ringparam(struct net_device *dev, void *useraddr){	struct ethtool_ringparam ringparam = { ETHTOOL_GRINGPARAM };	if (!ethtool_ops->get_ringparam)		return -EOPNOTSUPP;	ethtool_ops->get_ringparam(dev, &ringparam);	if (copy_to_user(useraddr, &ringparam, sizeof(ringparam)))		return -EFAULT;	return 0;}static int ethtool_set_ringparam(struct net_device *dev, void *useraddr){	struct ethtool_ringparam ringparam;	if (!ethtool_ops->get_ringparam)		return -EOPNOTSUPP;	if (copy_from_user(&ringparam, useraddr, sizeof(ringparam)))		return -EFAULT;	return ethtool_ops->set_ringparam(dev, &ringparam);}static int ethtool_get_pauseparam(struct net_device *dev, void *useraddr){	struct ethtool_pauseparam pauseparam = { ETHTOOL_GPAUSEPARAM };	if (!ethtool_ops->get_pauseparam)		return -EOPNOTSUPP;	ethtool_ops->get_pauseparam(dev, &pauseparam);	if (copy_to_user(useraddr, &pauseparam, sizeof(pauseparam)))		return -EFAULT;	return 0;}static int ethtool_set_pauseparam(struct net_device *dev, void *useraddr){	struct ethtool_pauseparam pauseparam;	if (!ethtool_ops->get_pauseparam)		return -EOPNOTSUPP;	if (copy_from_user(&pauseparam, useraddr, sizeof(pauseparam)))		return -EFAULT;	return ethtool_ops->set_pauseparam(dev, &pauseparam);}static int ethtool_get_rx_csum(struct net_device *dev, char *useraddr){	struct ethtool_value edata = { ETHTOOL_GRXCSUM };	if (!ethtool_ops->get_rx_csum)		return -EOPNOTSUPP;	edata.data = ethtool_ops->get_rx_csum(dev);	if (copy_to_user(useraddr, &edata, sizeof(edata)))		return -EFAULT;	return 0;}static int ethtool_set_rx_csum(struct net_device *dev, char *useraddr){	struct ethtool_value edata;	if (!ethtool_ops->set_rx_csum)		return -EOPNOTSUPP;	if (copy_from_user(&edata, useraddr, sizeof(edata)))		return -EFAULT;	ethtool_ops->set_rx_csum(dev, edata.data);	return 0;}static int ethtool_get_tx_csum(struct net_device *dev, char *useraddr){	struct ethtool_value edata = { ETHTOOL_GTXCSUM };	if (!ethtool_ops->get_tx_csum)		return -EOPNOTSUPP;	edata.data = ethtool_ops->get_tx_csum(dev);	if (copy_to_user(useraddr, &edata, sizeof(edata)))		return -EFAULT;	return 0;}

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
亚洲精品乱码久久久久久日本蜜臀| 亚洲一区av在线| 国产精品嫩草99a| 亚洲成人午夜影院| 高清av一区二区| 欧美日韩免费一区二区三区视频| 国产视频一区二区三区在线观看| 午夜精品在线看| 91丝袜美腿高跟国产极品老师| 日韩欧美在线综合网| 亚洲人成小说网站色在线| 国产乱码精品一品二品| 欧美电影一区二区| 亚洲黄色小说网站| 成人国产一区二区三区精品| 精品精品国产高清a毛片牛牛| 亚洲成a人片综合在线| 91在线看国产| 中文在线一区二区| 麻豆精品国产传媒mv男同| 一本色道久久综合狠狠躁的推荐| 国产三级精品三级在线专区| 国内精品在线播放| 精品少妇一区二区三区在线视频| 天堂在线亚洲视频| 欧美精品乱码久久久久久| 亚洲最新视频在线观看| 色综合一区二区三区| 中文字幕中文字幕在线一区 | 久久久精品免费网站| 日本亚洲免费观看| 91精品国产色综合久久不卡蜜臀| 五月天视频一区| 欧美日韩国产在线观看| 视频一区视频二区中文字幕| 欧美日韩国产免费一区二区| 亚洲成av人片观看| 91精品在线观看入口| 日韩成人午夜电影| 精品久久久久久久久久久院品网| 久久精品国产色蜜蜜麻豆| 精品区一区二区| 国内成人免费视频| 国产精品视频一区二区三区不卡| 成人av影视在线观看| 亚洲色图制服诱惑 | 亚洲国产精品一区二区www在线| 91免费精品国自产拍在线不卡| 亚洲色图在线播放| 欧美午夜精品一区二区三区 | 欧美日韩高清在线| 美国一区二区三区在线播放| xnxx国产精品| 99久久免费视频.com| 亚洲国产视频a| 欧美一卡二卡三卡| 国产成人夜色高潮福利影视| 亚洲欧洲精品天堂一级 | 亚洲综合另类小说| 91麻豆精品国产91久久久使用方法 | 日韩电影在线免费| 精品久久久久久久久久久久久久久 | 精品国产亚洲在线| 91在线云播放| 奇米精品一区二区三区在线观看一| 久久先锋影音av鲁色资源网| 99视频精品全部免费在线| 午夜av区久久| 中文字幕av一区二区三区高| 欧美日韩高清在线播放| 成人免费三级在线| 日本91福利区| 亚洲男人的天堂av| 精品国产乱码91久久久久久网站| eeuss鲁片一区二区三区 | 一区二区三区加勒比av| 精品国产伦一区二区三区观看体验| 99在线精品免费| 国产中文字幕精品| 香蕉av福利精品导航| 中文字幕乱码一区二区免费| 欧美一区日韩一区| 91免费国产在线观看| 国产精品一区二区久久不卡 | 国产精品影视在线观看| 亚洲国产欧美另类丝袜| 国产欧美一区二区精品忘忧草| 欧美日韩在线三区| 99精品视频在线观看| 奇米综合一区二区三区精品视频| 亚洲特级片在线| 亚洲精品一区二区三区影院 | 国产亚洲一区二区在线观看| 欧美美女网站色| 91免费看视频| 成人av午夜电影| 成人三级伦理片| 国产一区二区美女诱惑| 日韩av电影天堂| 亚洲国产视频在线| 亚洲国产一区二区a毛片| 日本一二三不卡| 国产网站一区二区三区| 26uuu色噜噜精品一区二区| 欧美日韩成人一区二区| 欧美日韩精品是欧美日韩精品| av电影在线观看一区| 国产99一区视频免费| 国产在线一区观看| 国产老妇另类xxxxx| 久久99精品国产| 乱中年女人伦av一区二区| 国产很黄免费观看久久| 九九九久久久精品| 蜜桃av一区二区| 乱一区二区av| 国产精品888| 国产大陆亚洲精品国产| 国产精品一区一区| 成人美女视频在线观看18| 成人性色生活片| 99国产欧美久久久精品| 91在线免费看| 欧美最新大片在线看| 欧美日韩美女一区二区| 在线播放/欧美激情| 欧美大胆人体bbbb| 久久久精品欧美丰满| 国产精品国产三级国产aⅴ中文| 亚洲欧洲精品成人久久奇米网| 亚洲蜜臀av乱码久久精品| 亚洲综合免费观看高清完整版| 丝袜诱惑制服诱惑色一区在线观看| 午夜av一区二区三区| 国产麻豆精品一区二区| 粉嫩绯色av一区二区在线观看| www.亚洲精品| 欧美美女喷水视频| 久久久精品tv| 亚洲日本护士毛茸茸| 日韩电影一区二区三区| 国产精一品亚洲二区在线视频| 成人网男人的天堂| 欧美三级蜜桃2在线观看| 日韩欧美在线不卡| 中文文精品字幕一区二区| 一区二区三区四区在线播放| 日韩av在线播放中文字幕| 国产成人免费在线观看不卡| 色噜噜狠狠色综合中国| 日韩午夜电影av| 亚洲欧美欧美一区二区三区| 视频一区二区三区中文字幕| 国产91对白在线观看九色| 欧美色区777第一页| 久久亚洲一区二区三区四区| 专区另类欧美日韩| 美女视频一区在线观看| 99久久国产综合精品色伊| 欧美一区二区播放| 一区二区三区中文字幕在线观看| 另类中文字幕网| 欧美色国产精品| 国产精品美女视频| 极品尤物av久久免费看| 欧美私人免费视频| 亚洲国产精品高清| 另类成人小视频在线| 91麻豆免费观看| 国产亚洲va综合人人澡精品| 日韩高清一区在线| 91黄色在线观看| 国产欧美日韩在线| 美女mm1313爽爽久久久蜜臀| 精品视频在线免费看| 亚洲天堂精品视频| 成人听书哪个软件好| 久久午夜老司机| 日本va欧美va精品发布| 欧美日韩一区不卡| 亚洲精品va在线观看| 91亚洲永久精品| 国产精品视频在线看| 国产精品1区2区3区| 精品久久久久久综合日本欧美| 午夜一区二区三区在线观看| 日本精品一区二区三区高清| 中文幕一区二区三区久久蜜桃| 久久99日本精品| 精品国产123| 狠狠色伊人亚洲综合成人| 日韩视频在线永久播放| 日韩精品亚洲专区| 欧美三级中文字| 亚洲一区二区视频在线观看| 91麻豆国产自产在线观看| 18成人在线视频| 色av综合在线| 亚洲香肠在线观看| 欧美日韩精品一区二区三区蜜桃 |