Changeset 919
- Timestamp:
- 04/21/05 20:45:28 (7 years ago)
- Files:
-
- tags/1.2.3/node/node.d.linux/iostat.in (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
tags/1.2.3/node/node.d.linux/iostat.in
r860 r919 203 203 my $tmpnam = $2; 204 204 my $major = $1; 205 next if ($tmpnam =~ /\d+$/); 205 if ($tmpnam =~ /\d+$/ ) { 206 # Special case for devices like cXdXpX, 207 # like the cciss driver. This is 208 # necessary, at least at RHEL3 209 next unless $tmpnam =~ /\/c\d+d\d+$/ 210 } 206 211 next unless grep { $_ } @fields; 207 212
