From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-lf1-f65.google.com (mail-lf1-f65.google.com [209.85.167.65]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by dev.tarantool.org (Postfix) with ESMTPS id 94285469710 for ; Mon, 8 Jun 2020 15:26:13 +0300 (MSK) Received: by mail-lf1-f65.google.com with SMTP id z206so10085693lfc.6 for ; Mon, 08 Jun 2020 05:26:13 -0700 (PDT) Date: Mon, 8 Jun 2020 15:26:10 +0300 From: Cyrill Gorcunov Message-ID: <20200608122610.GB134822@grain> References: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: Subject: Re: [Tarantool-patches] [PATCH 10/10] xrow: use unaligned store operation in xrow_to_iovec() List-Id: Tarantool development patches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Vladislav Shpilevoy Cc: tarantool-patches@dev.tarantool.org On Thu, May 21, 2020 at 10:37:24PM +0200, Vladislav Shpilevoy wrote: > xrow_to_iovec() tried to save a uint32_t value by a not aligned > address. The patch makes it use a special operation for that > instead of regular assignment. > > Part of #4609 Reviewed-by: Cyrill Gorcunov