Message ID | 1393008946-7931-4-git-send-email-ilya.dryomov@inktank.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
On 02/21/2014 12:55 PM, Ilya Dryomov wrote: > Our longest osd request now contains 3 ops: copyup+hint+write. This is pretty trivial and could be squashed into the patch that actually starts using more than two ops. It could certainly be squashed together with the next patch (that fixes the assertion). That being said, I appreciate your breaking up the functionality into logically separate changes, it's important. So I guess, do what you like... Reviewed-by: Alex Elder <elder@linaro.org> > Signed-off-by: Ilya Dryomov <ilya.dryomov@inktank.com> > --- > include/linux/ceph/osd_client.h | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/include/linux/ceph/osd_client.h b/include/linux/ceph/osd_client.h > index 6bfcb0eca8ab..bc874b2398d7 100644 > --- a/include/linux/ceph/osd_client.h > +++ b/include/linux/ceph/osd_client.h > @@ -43,7 +43,7 @@ struct ceph_osd { > }; > > > -#define CEPH_OSD_MAX_OP 2 > +#define CEPH_OSD_MAX_OP 3 > > enum ceph_osd_data_type { > CEPH_OSD_DATA_TYPE_NONE = 0, > -- To unsubscribe from this list: send the line "unsubscribe ceph-devel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
diff --git a/include/linux/ceph/osd_client.h b/include/linux/ceph/osd_client.h index 6bfcb0eca8ab..bc874b2398d7 100644 --- a/include/linux/ceph/osd_client.h +++ b/include/linux/ceph/osd_client.h @@ -43,7 +43,7 @@ struct ceph_osd { }; -#define CEPH_OSD_MAX_OP 2 +#define CEPH_OSD_MAX_OP 3 enum ceph_osd_data_type { CEPH_OSD_DATA_TYPE_NONE = 0,
Our longest osd request now contains 3 ops: copyup+hint+write. Signed-off-by: Ilya Dryomov <ilya.dryomov@inktank.com> --- include/linux/ceph/osd_client.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)