From mboxrd@z Thu Jan 1 00:00:00 1970 From: Mike Snitzer Subject: Re: dm flakey: document corrupt_bio_byte and optional feature precedence Date: Wed, 29 Jun 2011 10:52:37 -0400 Message-ID: <20110629145237.GB20420@redhat.com> References: <20110629144112.GA20420@redhat.com> Reply-To: device-mapper development Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Return-path: Content-Disposition: inline In-Reply-To: <20110629144112.GA20420@redhat.com> List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: dm-devel-bounces@redhat.com Errors-To: dm-devel-bounces@redhat.com To: "Alasdair G. Kergon" Cc: dm-devel@redhat.com List-Id: dm-devel.ids On Wed, Jun 29 2011 at 10:41am -0400, Mike Snitzer wrote: > Signed-off-by: Mike Snitzer > --- > Documentation/device-mapper/dm-flakey.txt | 15 ++++++++++++++- > 1 files changed, 14 insertions(+), 1 deletions(-) > > diff --git a/Documentation/device-mapper/dm-flakey.txt b/Documentation/device-mapper/dm-flakey.txt > index 6b40f79..6b4df49 100644 > --- a/Documentation/device-mapper/dm-flakey.txt > +++ b/Documentation/device-mapper/dm-flakey.txt > @@ -27,7 +27,20 @@ Mandatory parameters: > > Optional feature parameters: > If no feature parameters are present, during the periods of > - unreliability, all I/O returns errors. > + unreliability, all I/O returns errors. Optional features may be > + combined (e.g. corrupt_bio_byte on READ and drop_writes). Conflicting > + features (e.g. corrupt_bio_byte on WRITE and drop_writes) are resolved > + according to the following feature precedence (descending order): > + > + corrupt_bio_byte : > + Corrupt bios that have specific bi_rw flag(s), e.g.: READ=0 or > + REQ_WRITE=1|REQ_META=32, by writing to the of > + bios that have data. Gah, we should also add: may be 0 or 1. Bios that don't match fall through to the other optional feature(s) or the default of returning I/O error. > + Examples: > + 1) corrupt 32nd byte in READ bios with the value 1: > + corrupt_bio_byte 32 0 1 > + 2) corrupt 224th byte in WRITE|REQ_META bios with the value 0: > + corrupt_bio_byte 224 33 0 > > drop_writes: > All write I/O is silently ignored. > > -- > dm-devel mailing list > dm-devel@redhat.com > https://www.redhat.com/mailman/listinfo/dm-devel