All of lore.kernel.org
 help / color / mirror / Atom feed
From: Krishna Kanth Reddy <krish.reddy@samsung.com>
To: axboe@kernel.dk
Cc: fio@vger.kernel.org, Ankit Kumar <ankit.kumar@samsung.com>,
	Krishna Kanth Reddy <krish.reddy@samsung.com>
Subject: [PATCH 7/9] Example configuration for simple copy command
Date: Tue,  1 Dec 2020 17:10:32 +0530	[thread overview]
Message-ID: <20201201114034.8307-8-krish.reddy@samsung.com> (raw)
In-Reply-To: <20201201114034.8307-1-krish.reddy@samsung.com>

From: Ankit Kumar <ankit.kumar@samsung.com>

Signed-off-by: Krishna Kanth Reddy <krish.reddy@samsung.com>
---
 examples/fio-copy.fio | 32 ++++++++++++++++++++++++++++++++
 1 file changed, 32 insertions(+)
 create mode 100644 examples/fio-copy.fio

diff --git a/examples/fio-copy.fio b/examples/fio-copy.fio
new file mode 100644
index 00000000..02078147
--- /dev/null
+++ b/examples/fio-copy.fio
@@ -0,0 +1,32 @@
+[global]
+threads=1
+filename=fio-copy
+size=128m
+
+[writer]
+rw=write
+bs=128k
+numjobs=1
+offset=0
+buffer_pattern=0xdeadbeef
+
+[copier]
+new_group
+wait_for=writer
+rw=copy
+bs=16k
+offset=0
+dest_offset=256m
+num_range=8
+numjobs=1
+ioengine=sctl
+
+[reader]
+new_group
+wait_for=copier
+rw=read
+offset=256m
+bs=128k
+numjobs=1
+verify=pattern
+verify_pattern=0xdeadbeef
-- 
2.17.1



  parent reply	other threads:[~2020-12-01 11:40 UTC|newest]

Thread overview: 13+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <CGME20201201114048epcas5p3e12de26128ce442bbe8406082eaccde9@epcas5p3.samsung.com>
2020-12-01 11:40 ` [PATCH 0/9] v1 Patchset : Simple Copy Command support Krishna Kanth Reddy
     [not found]   ` <CGME20201201114051epcas5p4b9c67cd0ad4b55fc9334dfde59ae349c@epcas5p4.samsung.com>
2020-12-01 11:40     ` [PATCH 1/9] Adding the necessary ddir changes to introduce copy operation Krishna Kanth Reddy
     [not found]   ` <CGME20201201114054epcas5p2cf4bff491f02c4a29a386ae44d5e42c7@epcas5p2.samsung.com>
2020-12-01 11:40     ` [PATCH 2/9] Introducing new offsets for the " Krishna Kanth Reddy
     [not found]   ` <CGME20201201114057epcas5p1aa9d8e1a56197e55251191a0a5985e3d@epcas5p1.samsung.com>
2020-12-01 11:40     ` [PATCH 3/9] Added support for printing of stats and estimate time for " Krishna Kanth Reddy
     [not found]   ` <CGME20201201114100epcas5p2f02995779f5172f711cc6ad3d362d50a@epcas5p2.samsung.com>
2020-12-01 11:40     ` [PATCH 4/9] Adding a new " Krishna Kanth Reddy
     [not found]   ` <CGME20201201114103epcas5p1bbf3d8ca05252935c14fed68f44dab2d@epcas5p1.samsung.com>
2020-12-01 11:40     ` [PATCH 5/9] Added the changes for copy operation support in FIO Krishna Kanth Reddy
     [not found]   ` <CGME20201201114105epcas5p4b99d6a66a543152a377461875aedf342@epcas5p4.samsung.com>
2020-12-01 11:40     ` [PATCH 6/9] New ioctl based synchronous IO engine. Only supports copy command Krishna Kanth Reddy
     [not found]   ` <CGME20201201114107epcas5p4694adc6b50a123a06a06411393395636@epcas5p4.samsung.com>
2020-12-01 11:40     ` Krishna Kanth Reddy [this message]
     [not found]   ` <CGME20201201114110epcas5p34032161c14f467576734346712d0c3db@epcas5p3.samsung.com>
2020-12-01 11:40     ` [PATCH 8/9] Support copy operation for zoned block devices Krishna Kanth Reddy
2020-12-01 12:11       ` Damien Le Moal
2020-12-10 14:14         ` Krishna Kanth Reddy
2020-12-11  0:37           ` Damien Le Moal
     [not found]   ` <CGME20201201114113epcas5p328eabe564e0bda24c29e285bba8d8fd2@epcas5p3.samsung.com>
2020-12-01 11:40     ` [PATCH 9/9] Add a new test case to test the copy operation Krishna Kanth Reddy

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20201201114034.8307-8-krish.reddy@samsung.com \
    --to=krish.reddy@samsung.com \
    --cc=ankit.kumar@samsung.com \
    --cc=axboe@kernel.dk \
    --cc=fio@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.