-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
yaml --- r: 368675 b: refs/heads/master c: 6752c8d h: refs/heads/master i: 368673: e710e63 368671: f563e24 v: v3
- Loading branch information
YOSHIFUJI Hideaki / 吉藤英明
authored and
David S. Miller
committed
Mar 26, 2013
1 parent
75d1900
commit 61d38cc
Showing
5 changed files
with
83 additions
and
136 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--- | ||
refs/heads/master: 61a7839a19c157d11930fe69697a4c90884bf7c4 | ||
refs/heads/master: 6752c8db8e0cfedb44ba62806dd15b383ed64000 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
#ifndef _NET_FIREWIRE_H | ||
#define _NET_FIREWIRE_H | ||
|
||
/* Pseudo L2 address */ | ||
#define FWNET_ALEN 16 | ||
union fwnet_hwaddr { | ||
u8 u[FWNET_ALEN]; | ||
/* "Hardware address" defined in RFC2734/RF3146 */ | ||
struct { | ||
__be64 uniq_id; /* EUI-64 */ | ||
u8 max_rec; /* max packet size */ | ||
u8 sspd; /* max speed */ | ||
__be16 fifo_hi; /* hi 16bits of FIFO addr */ | ||
__be32 fifo_lo; /* lo 32bits of FIFO addr */ | ||
} __packed uc; | ||
}; | ||
|
||
/* Pseudo L2 Header */ | ||
#define FWNET_HLEN 18 | ||
struct fwnet_header { | ||
u8 h_dest[FWNET_ALEN]; /* destination address */ | ||
__be16 h_proto; /* packet type ID field */ | ||
} __packed; | ||
|
||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters