[f2fs-dev] [PATCH 02/35] block: add REQ_OP definitions and bi_op/op fields

2016-02-24 Thread mchristi
From: Mike Christie The following patches separate the operation (write, read, discard, etc) from the flags in bi_rw/cmd_flags. This patch adds definitions for request/bio operations, adds fields to the request/bio to set them, and some temporary compat code so the kernel/modules can use either o

[f2fs-dev] [PATCH 02/35] block: add REQ_OP definitions and bi_op/op fields

2016-01-12 Thread mchristi
From: Mike Christie The following patches separate the operation (write, read, discard, etc) from the flags in bi_rw/cmd_flags. This patch adds definitions for request/bio operations, adds fields to the request/bio to set them, and some temporary compat code so the kernel/modules can use either o

Re: [f2fs-dev] [PATCH 02/35] block: add REQ_OP definitions and bi_op/op fields

2016-01-09 Thread Christoph Hellwig
Seems like this is missing REQ_OP_FLUSH, which still hides as a write? -- Site24x7 APM Insight: Get Deep Visibility into Application Performance APM + Mobile APM + RUM: Monitor 3 App instances at just $35/Month Monitor en

Re: [f2fs-dev] [PATCH 02/35] block: add REQ_OP definitions and bi_op/op fields

2016-01-08 Thread Martin K. Petersen
> "Mike" == mchristi writes: +enum req_op { + REQ_OP_READ, + REQ_OP_WRITE= REQ_WRITE, + REQ_OP_DISCARD = REQ_DISCARD, + REQ_OP_WRITE_SAME = REQ_WRITE_SAME, +}; + I have been irked by the REQ_ prefix in bios since the flags were consolidated

[f2fs-dev] [PATCH 02/35] block: add REQ_OP definitions and bi_op/op fields

2016-01-06 Thread mchristi
From: Mike Christie The following patches separate the operation (write, read, discard, etc) from the flags in bi_rw/cmd_flags. This patch adds definitions for request/bio operations, adds fields to the request/bio to set them, and some temporary compat code so the kernel/modules can use either o