Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
linux-davinci
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
linux
linux-davinci
Commits
ea48e705
Commit
ea48e705
authored
Aug 04, 2005
by
Linus Torvalds
Browse files
Options
Browse Files
Download
Plain Diff
Merge head 'for-linus' of master.kernel.org:/pub/scm/linux/kernel/git/roland/infiniband
parents
6e346228
0dca0f7b
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
3 deletions
+5
-3
drivers/infiniband/include/ib_cm.h
drivers/infiniband/include/ib_cm.h
+2
-1
drivers/infiniband/ulp/ipoib/ipoib_main.c
drivers/infiniband/ulp/ipoib/ipoib_main.c
+3
-2
No files found.
drivers/infiniband/include/ib_cm.h
View file @
ea48e705
...
@@ -169,7 +169,8 @@ enum ib_cm_rej_reason {
...
@@ -169,7 +169,8 @@ enum ib_cm_rej_reason {
IB_CM_REJ_INVALID_ALT_TRAFFIC_CLASS
=
__constant_htons
(
21
),
IB_CM_REJ_INVALID_ALT_TRAFFIC_CLASS
=
__constant_htons
(
21
),
IB_CM_REJ_INVALID_ALT_HOP_LIMIT
=
__constant_htons
(
22
),
IB_CM_REJ_INVALID_ALT_HOP_LIMIT
=
__constant_htons
(
22
),
IB_CM_REJ_INVALID_ALT_PACKET_RATE
=
__constant_htons
(
23
),
IB_CM_REJ_INVALID_ALT_PACKET_RATE
=
__constant_htons
(
23
),
IB_CM_REJ_PORT_REDIRECT
=
__constant_htons
(
24
),
IB_CM_REJ_PORT_CM_REDIRECT
=
__constant_htons
(
24
),
IB_CM_REJ_PORT_REDIRECT
=
__constant_htons
(
25
),
IB_CM_REJ_INVALID_MTU
=
__constant_htons
(
26
),
IB_CM_REJ_INVALID_MTU
=
__constant_htons
(
26
),
IB_CM_REJ_INSUFFICIENT_RESP_RESOURCES
=
__constant_htons
(
27
),
IB_CM_REJ_INSUFFICIENT_RESP_RESOURCES
=
__constant_htons
(
27
),
IB_CM_REJ_CONSUMER_DEFINED
=
__constant_htons
(
28
),
IB_CM_REJ_CONSUMER_DEFINED
=
__constant_htons
(
28
),
...
...
drivers/infiniband/ulp/ipoib/ipoib_main.c
View file @
ea48e705
...
@@ -600,9 +600,10 @@ static int ipoib_start_xmit(struct sk_buff *skb, struct net_device *dev)
...
@@ -600,9 +600,10 @@ static int ipoib_start_xmit(struct sk_buff *skb, struct net_device *dev)
ipoib_mcast_send
(
dev
,
(
union
ib_gid
*
)
(
phdr
->
hwaddr
+
4
),
skb
);
ipoib_mcast_send
(
dev
,
(
union
ib_gid
*
)
(
phdr
->
hwaddr
+
4
),
skb
);
}
else
{
}
else
{
/* unicast GID -- should be ARP reply */
/* unicast GID -- should be ARP
or RARP
reply */
if
(
be16_to_cpup
((
u16
*
)
skb
->
data
)
!=
ETH_P_ARP
)
{
if
((
be16_to_cpup
((
__be16
*
)
skb
->
data
)
!=
ETH_P_ARP
)
&&
(
be16_to_cpup
((
__be16
*
)
skb
->
data
)
!=
ETH_P_RARP
))
{
ipoib_warn
(
priv
,
"Unicast, no %s: type %04x, QPN %06x "
ipoib_warn
(
priv
,
"Unicast, no %s: type %04x, QPN %06x "
IPOIB_GID_FMT
"
\n
"
,
IPOIB_GID_FMT
"
\n
"
,
skb
->
dst
?
"neigh"
:
"dst"
,
skb
->
dst
?
"neigh"
:
"dst"
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment