On Mon, Jan 27, 2020 at 10:03:47AM -0700, Logan Gunthorpe wrote:
quoted
- nvme read "/dev/${nvmedev}n1" -s "$sectors" -c 0 -z "$bs" 2>"$FULL" \
+ nvme read "/dev/${nvmedev}n1" -s "$sectors" -c 0 -z "$bs" &>"$FULL" \
&& echo "ERROR: Successfully read out of device lba range"
That's an odd message for an error... Error! I succeeded!
I think the idea is that the command should *not* succeed. So 'nvme
read' is expected to fail.
It is a bit confusing. What about something like
"ERROR: lba range read was unexpected successfull"?