module IDRAC::Storage

def fastpath_good?(volume)

Check if FastPath is properly configured for a volume
def fastpath_good?(volume)
  return "disabled" unless volume
  
  # Modern firmware check handled by caller
  if volume[:write_cache_policy] == "WriteThrough" && 
     volume[:read_cache_policy] == "NoReadAhead" && 
     volume[:stripe_size] == "64KB"
    return "enabled"
  else
    return "disabled"
  end
end