#compdef flowtop # # flowtop.zsh -- zsh completion function for flowtop # # Copyright (C) 2013 Hideo Hattori # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License version 2 as # published by the Free Software Foundation. typeset -A opt_args _arguments -s -S \ "(-4 --ipv4)"{-4,--ipv4}"[Show only IPv4 flows (default)]" \ "(-6 --ipv6)"{-6,--ipv6}"[Show only IPv6 flows (default)]" \ "(-T --tcp)"{-T,--tcp}"[Show only TCP flows (default)]" \ "(-U --udp)"{-U,--udp}"[Show only UDP flows]" \ "(-D --dccp)"{-D,--dccp}"[Show only DCCP flows]" \ "(-I --icmp)"{-I,--icmp}"[Show only ICMP/ICMPv6 flows]" \ "(-S --sctp)"{-S,--sctp}"[Show only SCTP flows]" \ "(-s --show-src)"{-s,--show-src}"[Also show source, not only dest]" \ "(-u --update)"{-u,--update}"[Update GeoIP databases]" \ {-v,--version}"[Print version and exit]:" \ {-h,--help}"[Print help and exit]:" \ "*::args:_gnu_generic" onchange='this.form.submit();'> net-next plumbingsTobias Klauser
summaryrefslogtreecommitdiff
path: root/block
diff options
context:
space:
mode:
authorShaun Tancheff <shaun@tancheff.com>2016-11-21 15:52:23 -0600
committerJens Axboe <axboe@fb.com>2016-11-21 15:08:24 -0700
commit778889d8412e36e666b1e4ce108373613c84b428 (patch)
tree09f6a7ab673ed4be84f3f296ffd8c4e0d4f6c770 /block
parent93c5bdf7ab71bbdae27f8f51fa175e06f000d69d (diff)
block: apply blk_partition_remap to REQ_OP_ZONE_RESET
If a ZBC device is partitioned and operations are performed on the partition the zone information is rebased to the partition, however the zone reset is not mapped from the partition to device as are other operations. This causes the API (report zones / reset zone) to be unbalanced in this regard. Checking for the zone reset op code explicitly will balance the API. Signed-off-by: Shaun Tancheff <shaun.tancheff@seagate.com> Signed-off-by: Jens Axboe <axboe@fb.com>
Diffstat (limited to 'block')