Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1758152AbbDVTjy (ORCPT ); Wed, 22 Apr 2015 15:39:54 -0400 Received: from mail-wi0-f181.google.com ([209.85.212.181]:34907 "EHLO mail-wi0-f181.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1758039AbbDVTju (ORCPT ); Wed, 22 Apr 2015 15:39:50 -0400 MIME-Version: 1.0 In-Reply-To: <94D0CD8314A33A4D9D801C0FE68B40295A8BE89F@G9W0745.americas.hpqcorp.net> References: <20150418013256.25237.96403.stgit@dwillia2-desk3.amr.corp.intel.com> <20150418013655.25237.41353.stgit@dwillia2-desk3.amr.corp.intel.com> <94D0CD8314A33A4D9D801C0FE68B40295A8BE89F@G9W0745.americas.hpqcorp.net> Date: Wed, 22 Apr 2015 12:39:49 -0700 Message-ID: Subject: Re: [Linux-nvdimm] [PATCH 19/21] nd: infrastructure for btt devices From: Dan Williams To: "Elliott, Robert (Server Storage)" Cc: "linux-nvdimm@lists.01.org" , Neil Brown , Greg KH , "linux-kernel@vger.kernel.org" Content-Type: text/plain; charset=UTF-8 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1379 Lines: 40 On Wed, Apr 22, 2015 at 12:12 PM, Elliott, Robert (Server Storage) wrote: >> -----Original Message----- >> From: Linux-nvdimm [mailto:linux-nvdimm-bounces@lists.01.org] On Behalf Of >> Dan Williams >> Sent: Friday, April 17, 2015 8:37 PM >> To: linux-nvdimm@lists.01.org >> Subject: [Linux-nvdimm] [PATCH 19/21] nd: infrastructure for btt devices >> > ... >> +/* >> + * btt_sb_checksum: compute checksum for btt info block >> + * >> + * Returns a fletcher64 checksum of everything in the given info block >> + * except the last field (since that's where the checksum lives). >> + */ >> +u64 btt_sb_checksum(struct btt_sb *btt_sb) >> +{ >> + u64 sum, sum_save; >> + >> + sum_save = btt_sb->checksum; >> + btt_sb->checksum = 0; >> + sum = nd_fletcher64(btt_sb, sizeof(*btt_sb)); >> + btt_sb->checksum = sum_save; >> + return sum; >> +} >> +EXPORT_SYMBOL(btt_sb_checksum); > ... > > Of all the functions with prototypes in nd.h, this is the only > function that doesn't have a name starting with nd_. > > Following such a convention helps ease setting up ftrace filters. Sure, I'll fix that up. -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/