mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-06-22 14:41:27 +00:00
rapidio: use common destid storage for endpoints and switches
Change code to use one storage location common for switches and endpoints. This eliminates unnecessary device type checks during basic access operations. Logic that assigns destid to RIO devices stays unchanged - as before, switches use an associated destid because they do not have their own. Signed-off-by: Alexandre Bounine <alexandre.bounine@idt.com> Cc: Kumar Gala <galak@kernel.crashing.org> Cc: Matt Porter <mporter@kernel.crashing.org> Cc: Li Yang <leoli@freescale.com> Cc: Thomas Moll <thomas.moll@sysgo.com> Cc: Micha Nelissen <micha@neli.hopto.org> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
e6d7202b66
commit
a93192a5d2
8 changed files with 141 additions and 265 deletions
|
@ -98,7 +98,8 @@ union rio_pw_msg;
|
|||
* @dev: Device model device
|
||||
* @riores: RIO resources this device owns
|
||||
* @pwcback: port-write callback function for this device
|
||||
* @destid: Network destination ID
|
||||
* @destid: Network destination ID (or associated destid for switch)
|
||||
* @hopcount: Hopcount to this device
|
||||
* @prev: Previous RIO device connected to the current one
|
||||
*/
|
||||
struct rio_dev {
|
||||
|
@ -126,6 +127,7 @@ struct rio_dev {
|
|||
struct resource riores[RIO_MAX_DEV_RESOURCES];
|
||||
int (*pwcback) (struct rio_dev *rdev, union rio_pw_msg *msg, int step);
|
||||
u16 destid;
|
||||
u8 hopcount;
|
||||
struct rio_dev *prev;
|
||||
};
|
||||
|
||||
|
@ -229,8 +231,6 @@ struct rio_net {
|
|||
* @node: Node in global list of switches
|
||||
* @rdev: Associated RIO device structure
|
||||
* @switchid: Switch ID that is unique across a network
|
||||
* @hopcount: Hopcount to this switch
|
||||
* @destid: Associated destid in the path
|
||||
* @route_table: Copy of switch routing table
|
||||
* @port_ok: Status of each port (one bit per port) - OK=1 or UNINIT=0
|
||||
* @add_entry: Callback for switch-specific route add function
|
||||
|
@ -247,8 +247,6 @@ struct rio_switch {
|
|||
struct list_head node;
|
||||
struct rio_dev *rdev;
|
||||
u16 switchid;
|
||||
u16 hopcount;
|
||||
u16 destid;
|
||||
u8 *route_table;
|
||||
u32 port_ok;
|
||||
int (*add_entry) (struct rio_mport * mport, u16 destid, u8 hopcount,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue