You can subscribe to this list here.
2009 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
(14) |
Aug
(8) |
Sep
(14) |
Oct
(7) |
Nov
(9) |
Dec
(7) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2010 |
Jan
(11) |
Feb
(4) |
Mar
(6) |
Apr
(3) |
May
(7) |
Jun
(12) |
Jul
(4) |
Aug
(6) |
Sep
(1) |
Oct
(4) |
Nov
(2) |
Dec
(2) |
2011 |
Jan
(2) |
Feb
(3) |
Mar
(10) |
Apr
(7) |
May
(5) |
Jun
(3) |
Jul
(7) |
Aug
(6) |
Sep
(1) |
Oct
(1) |
Nov
(4) |
Dec
(6) |
2012 |
Jan
|
Feb
(4) |
Mar
(1) |
Apr
(2) |
May
(21) |
Jun
(6) |
Jul
(3) |
Aug
|
Sep
|
Oct
(2) |
Nov
|
Dec
(10) |
2013 |
Jan
(10) |
Feb
(8) |
Mar
|
Apr
(9) |
May
(33) |
Jun
(11) |
Jul
(16) |
Aug
(3) |
Sep
(8) |
Oct
(1) |
Nov
(16) |
Dec
(7) |
2014 |
Jan
(19) |
Feb
(71) |
Mar
(46) |
Apr
(16) |
May
(1) |
Jun
(18) |
Jul
(6) |
Aug
(12) |
Sep
(7) |
Oct
(4) |
Nov
(9) |
Dec
(7) |
2015 |
Jan
(15) |
Feb
(6) |
Mar
(10) |
Apr
(7) |
May
(16) |
Jun
(21) |
Jul
(6) |
Aug
|
Sep
(2) |
Oct
|
Nov
|
Dec
(1) |
2016 |
Jan
(1) |
Feb
|
Mar
(1) |
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2017 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(1) |
Nov
|
Dec
|
2018 |
Jan
(2) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: Nathan F. <nf...@au...> - 2009-07-01 15:43:11
|
The logical device name to open firmware path translation for fibre-channel devices can fail on systems where the fc_remote_ports file in sysfs has a slightly different name. On some systems this file appears as fc_remote_ports:rport-X:Y-Z. This patch corrects the lookup of this file. Signed-off-by: Nathan Fontenot <nf...@au...> --- scripts/ofpathname | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/ofpathname b/scripts/ofpathname index db57bbe..a699353 100755 --- a/scripts/ofpathname +++ b/scripts/ofpathname @@ -905,7 +905,7 @@ of2l_fc() link=$PWD # find device_path, not all dirs will have a fc_remote_ports - goto_dir $PWD "fc_remote_ports" 0 + goto_dir $PWD "fc_remote_ports*" 0 if [[ $? -eq 1 ]]; then continue fi @@ -920,7 +920,7 @@ of2l_fc() fi local fc_lun=`get_fc_scsilun $LUN` - local wwpn=`get_fc_wwpn "$device_path"` + local wwpn=`get_fc_wwpn "$device_path/fc_remote_ports*"` if [[ $fc_lun = $OF_LUN && $wwpn = $OF_WWPN ]]; then LOGICAL_DEVNAME="${dir##*/}" |