Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
cloud-kernel
提交
f1b8c63e
cloud-kernel
项目概览
openanolis
/
cloud-kernel
1 年多 前同步成功
通知
160
Star
36
Fork
7
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
10
列表
看板
标记
里程碑
合并请求
2
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
cloud-kernel
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
10
Issue
10
列表
看板
标记
里程碑
合并请求
2
合并请求
2
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
f1b8c63e
编写于
11月 18, 2005
作者:
J
Jeff Garzik
浏览文件
操作
浏览文件
下载
差异文件
Merge branch 'halasa-hdlc' of
git://git.tuxdriver.com/git/netdev-jwl
上级
97242126
1f7bad72
变更
3
显示空白变更内容
内联
并排
Showing
3 changed file
with
16 addition
and
0 deletion
+16
-0
drivers/net/wan/hdlc_cisco.c
drivers/net/wan/hdlc_cisco.c
+6
-0
drivers/net/wan/hdlc_fr.c
drivers/net/wan/hdlc_fr.c
+4
-0
drivers/net/wan/hdlc_generic.c
drivers/net/wan/hdlc_generic.c
+6
-0
未找到文件。
drivers/net/wan/hdlc_cisco.c
浏览文件 @
f1b8c63e
...
...
@@ -192,7 +192,9 @@ static int cisco_rx(struct sk_buff *skb)
"uptime %ud%uh%um%us)
\n
"
,
dev
->
name
,
days
,
hrs
,
min
,
sec
);
#if 0
netif_carrier_on(dev);
#endif
hdlc
->
state
.
cisco
.
up
=
1
;
}
}
...
...
@@ -225,7 +227,9 @@ static void cisco_timer(unsigned long arg)
hdlc
->
state
.
cisco
.
settings
.
timeout
*
HZ
))
{
hdlc
->
state
.
cisco
.
up
=
0
;
printk
(
KERN_INFO
"%s: Link down
\n
"
,
dev
->
name
);
#if 0
netif_carrier_off(dev);
#endif
}
cisco_keepalive_send
(
dev
,
CISCO_KEEPALIVE_REQ
,
...
...
@@ -261,8 +265,10 @@ static void cisco_stop(struct net_device *dev)
{
hdlc_device
*
hdlc
=
dev_to_hdlc
(
dev
);
del_timer_sync
(
&
hdlc
->
state
.
cisco
.
timer
);
#if 0
if (netif_carrier_ok(dev))
netif_carrier_off(dev);
#endif
hdlc
->
state
.
cisco
.
up
=
0
;
hdlc
->
state
.
cisco
.
request_sent
=
0
;
}
...
...
drivers/net/wan/hdlc_fr.c
浏览文件 @
f1b8c63e
...
...
@@ -545,8 +545,10 @@ static void fr_set_link_state(int reliable, struct net_device *dev)
hdlc
->
state
.
fr
.
reliable
=
reliable
;
if
(
reliable
)
{
#if 0
if (!netif_carrier_ok(dev))
netif_carrier_on(dev);
#endif
hdlc
->
state
.
fr
.
n391cnt
=
0
;
/* Request full status */
hdlc
->
state
.
fr
.
dce_changed
=
1
;
...
...
@@ -560,8 +562,10 @@ static void fr_set_link_state(int reliable, struct net_device *dev)
}
}
}
else
{
#if 0
if (netif_carrier_ok(dev))
netif_carrier_off(dev);
#endif
while
(
pvc
)
{
/* Deactivate all PVCs */
pvc_carrier
(
0
,
pvc
);
...
...
drivers/net/wan/hdlc_generic.c
浏览文件 @
f1b8c63e
...
...
@@ -79,11 +79,13 @@ static void __hdlc_set_carrier_on(struct net_device *dev)
hdlc_device
*
hdlc
=
dev_to_hdlc
(
dev
);
if
(
hdlc
->
proto
.
start
)
return
hdlc
->
proto
.
start
(
dev
);
#if 0
#ifdef DEBUG_LINK
if (netif_carrier_ok(dev))
printk(KERN_ERR "hdlc_set_carrier_on(): already on\n");
#endif
netif_carrier_on(dev);
#endif
}
...
...
@@ -94,11 +96,13 @@ static void __hdlc_set_carrier_off(struct net_device *dev)
if
(
hdlc
->
proto
.
stop
)
return
hdlc
->
proto
.
stop
(
dev
);
#if 0
#ifdef DEBUG_LINK
if (!netif_carrier_ok(dev))
printk(KERN_ERR "hdlc_set_carrier_off(): already off\n");
#endif
netif_carrier_off(dev);
#endif
}
...
...
@@ -294,8 +298,10 @@ int register_hdlc_device(struct net_device *dev)
if
(
result
!=
0
)
return
-
EIO
;
#if 0
if (netif_carrier_ok(dev))
netif_carrier_off(dev); /* no carrier until DCD goes up */
#endif
return
0
;
}
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录