Originally posted by: hdkutz
Hello,
i use this to change my speed settings in AIX:
<snip>
#######################
-
fiberchannel settings
#######################
-
show settings of an attribute
-
lsattr -El fcs0
bus_intr_lvl 323 Bus interrupt level False
bus_io_addr 0xdf800 Bus I/O address False
bus_mem_addr 0xe8081000 Bus memory address False
init_link al INIT Link flags True
intr_priority 3 Interrupt priority False
lg_term_dma 0x800000 Long term DMA True
max_xfer_size 0x200000 Maximum Transfer Size True
num_cmd_elems 200 Maximum number of COMMANDS to queue to the adapter True
pref_alpa 0x1 Preferred AL_PA True
sw_fc_class 2 FC Class for Fabric True
-
lsattr -El fcs0 -R -a max_xfer_size
0x100000
0x200000
0x400000
0x800000
0x1000000
-
change direct (vol must be offline)
-
chdev -l fcs0 -a max_xfer_size=0x200000
-
odm change only
-
chdev -l fcs0 -P -a max_xfer_size=0x100000 (default)
-
chdev -l fcs0 -P -a max_xfer_size=0x200000 # 2GB
-
chdev -l fcs0 -P -a max_xfer_size=0x400000 # 4GB
-
chdev -l fcs0 -P -a max_xfer_size=0x800000 # 8GB
-
chdev -l fcs0 -P -a max_xfer_size=0x1000000 # 10GB
-
chdev -l fcs0 -P -a lg_term_dma=0x800000 (0x800000)
Reboot to make changes active.
<snip>
HTH,
ku