diff options
author | Samuel Mendoza-Jonas <sam@mendozajonas.com> | 2018-11-16 07:51:55 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2018-11-18 08:09:49 +0300 |
commit | 8e13f70be05ee49985dfc3c766868bc85ed43b8a (patch) | |
tree | e1ac16f75807d387d0876b860dd2274716132af8 /net/ncsi/internal.h | |
parent | 60ab49bfe4fa576c5b1d98b9dfc523bfcb3c610c (diff) | |
download | linux-8e13f70be05ee49985dfc3c766868bc85ed43b8a.tar.xz |
net/ncsi: Probe single packages to avoid conflict
Currently the NCSI driver sends a select-package command to all possible
packages simultaneously to discover what packages are available. However
at this stage in the probe process the driver does not know if
hardware arbitration is available: if it isn't then this process could
cause collisions on the RMII bus when packages try to respond.
Update the probe loop to probe each package one by one, and once
complete check if HWA is universally supported.
Signed-off-by: Samuel Mendoza-Jonas <sam@mendozajonas.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ncsi/internal.h')
-rw-r--r-- | net/ncsi/internal.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/net/ncsi/internal.h b/net/ncsi/internal.h index 1dae77c54009..ec65778c41f3 100644 --- a/net/ncsi/internal.h +++ b/net/ncsi/internal.h @@ -292,6 +292,7 @@ struct ncsi_dev_priv { #if IS_ENABLED(CONFIG_IPV6) unsigned int inet6_addr_num; /* Number of IPv6 addresses */ #endif + unsigned int package_probe_id;/* Current ID during probe */ unsigned int package_num; /* Number of packages */ struct list_head packages; /* List of packages */ struct ncsi_channel *hot_channel; /* Channel was ever active */ |