Received: by 2002:ad5:474a:0:0:0:0:0 with SMTP id i10csp5987500imu; Mon, 21 Jan 2019 00:57:27 -0800 (PST) X-Google-Smtp-Source: ALg8bN565dRRhSyOtwMiOcQJYLsufMSl2Hhko+eTeT/SwWPYSokEQIiBenPRCGU5Nmy3tcBb9wJa X-Received: by 2002:a63:a84a:: with SMTP id i10mr27758836pgp.263.1548061047575; Mon, 21 Jan 2019 00:57:27 -0800 (PST) ARC-Seal: i=1; a=rsa-sha256; t=1548061047; cv=none; d=google.com; s=arc-20160816; b=JMeJolUo0zXaiOhqHjzmsDsYrVUE9atJKSIi8WRsx3ReSiXRdoK7PrZSjB4RPxhHiM UnaHN6RjxWc3Ux3eUd+7cxosT5b8j8fomIMl6NvEvvfEAoaXLPC56H/kbkClMfTm2LXu AW4vDk0FIpOrHnmesVlyDz9I1SvVV2aAPwGlF4hy+hSX1OVSXBRel82CSnSuX3x1VcI6 hT3bORUVcatgl30opYdJylZFhI7/zKJ2zzHFCmaNVNu01QEI7HStFqSg0vNTnqjyL8Dj 6Y76GuolrTKu+OHOTLsKZXe2IcWVDz0DJc5WwrOOE+xbMkwoYxGkEHInMsIxBerqT5D5 MIGQ== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:user-agent:in-reply-to :content-disposition:mime-version:references:message-id:subject:cc :to:from:date; bh=AF/8L1YqXAA4oQM535xLP38S3M/Rw3DTCC6efUhFT9s=; b=xr+Um8d5pcvHPA9sHbUsJePgvhUJrguaEvfBHoicNLvOONyTTs9UDfx8fgaJ0AG3ew jt6AYPuqwfDr4udyWBWJAwKbh/WQm6I6m9ussMOod+9KjPFpUchTxuhDx8ksdRnq/Mf0 wgt8rKUPXHFjVFa7CcCV9RSfzhsYFlNKkFxioeM1MuDSDpuM2rGYem67DoG+rABmdYj4 bpM2piFsVJV5nIN4Ocu686gXw5prhZtgxzNDzBJn1IqqWs3HINcsJcCfJEuDra6pjprh q+REdQqrcmp9D+yC+aCQ7uudrkyURFHs+7cFiAWEQHnspnmuSFAhDcAKxT5eFxhH3+CN gmnw== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id y12si9349262pgf.527.2019.01.21.00.57.12; Mon, 21 Jan 2019 00:57:27 -0800 (PST) Received-SPF: pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) client-ip=209.132.180.67; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1729676AbfAUItw (ORCPT + 99 others); Mon, 21 Jan 2019 03:49:52 -0500 Received: from verein.lst.de ([213.95.11.211]:57032 "EHLO newverein.lst.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1728877AbfAUItv (ORCPT ); Mon, 21 Jan 2019 03:49:51 -0500 Received: by newverein.lst.de (Postfix, from userid 2407) id CE37F68DD2; Mon, 21 Jan 2019 09:49:50 +0100 (CET) Date: Mon, 21 Jan 2019 09:49:50 +0100 From: Christoph Hellwig To: Andy Shevchenko Cc: Christoph Hellwig , linux-kernel@vger.kernel.org, Dave Kleikamp , jfs-discussion@lists.sourceforge.net Subject: Re: [PATCH v1] fs/jfs: Switch to use new generic UUID API Message-ID: <20190121084950.GG18680@lst.de> References: <20190110134153.83901-1-andriy.shevchenko@linux.intel.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20190110134153.83901-1-andriy.shevchenko@linux.intel.com> User-Agent: Mutt/1.5.17 (2007-11-01) Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org > + buf->f_fsid.val[1] = (u32)crc32_le(0, (char *)&sbi->uuid + sizeof(sbi->uuid)/2, This adds an overly long line, and has weird operator spacing. In fact given how much deep magic it does it should probably be moved into a helper and properly documented when you touch it anyway.