From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 714E4C433EF for ; Wed, 6 Oct 2021 15:40:18 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 57030610A5 for ; Wed, 6 Oct 2021 15:40:18 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S231916AbhJFPmJ (ORCPT ); Wed, 6 Oct 2021 11:42:09 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:54328 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S230014AbhJFPmJ (ORCPT ); Wed, 6 Oct 2021 11:42:09 -0400 Received: from casper.infradead.org (casper.infradead.org [IPv6:2001:8b0:10b:1236::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 148D0C061746 for ; Wed, 6 Oct 2021 08:40:17 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=infradead.org; s=casper.20170209; h=In-Reply-To:Content-Type:MIME-Version: References:Message-ID:Subject:Cc:To:From:Date:Sender:Reply-To: Content-Transfer-Encoding:Content-ID:Content-Description; bh=NQwTO7FkpLZVbuuUmZZA3meW3NcqE6QyvtCNvwRhmWg=; b=bPwGJgk0NDgedUrWcPFTvyEPex jzW2MI4zNKtYBvW8xc+NK5o+O0jBbt3sdJgmZrpYTjAr4JQvTj72H33DR4ws2ySzu4hq/bhgxJXBB Qj65gm7+Sd6+Rq6w3WbzLF967Mbr9TMFl6gEIj8zEGkHmgE3SvN2yYhUfYcjo2CA3QVLo54YJxIyh oiUySk4nkcMKiRAUifhVoHHCcUi7QGmOp+IaKfUetrpIFSMmWLRnri9uJQjE6dyXHCluqCy+VyITM 18DZatCjSJBEQtV7Tz8WnvsoPIkzreLfgET2oPeISy9W62jA9b+XlVVrucEdMSNkFYjF6gjvvb+9d Qh0TJ2nA==; Received: from willy by casper.infradead.org with local (Exim 4.94.2 #2 (Red Hat Linux)) id 1mY90L-00120B-1I; Wed, 06 Oct 2021 15:39:03 +0000 Date: Wed, 6 Oct 2021 16:38:49 +0100 From: Matthew Wilcox To: Al Viro Cc: linux-mm@kvack.org, David Hildenbrand , Kent Overstreet , Johannes Weiner , linux-fsdevel@vger.kernel.org Subject: Re: [RFC] pgflags_t Message-ID: References: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: Precedence: bulk List-ID: X-Mailing-List: linux-fsdevel@vger.kernel.org On Wed, Oct 06, 2021 at 03:22:29PM +0000, Al Viro wrote: > On Wed, Oct 06, 2021 at 03:58:14PM +0100, Matthew Wilcox wrote: > > David expressed some unease about the lack of typesafety in patches > > 1 & 2 of the page->slab conversion [1], and I'll admit to not being > > particularly a fan of passing around an unsigned long. That crystallised > > in a discussion with Kent [2] about how to lock a page when you don't know > > its type (solution: every memory descriptor type starts with a > > pgflags_t) > > Why bother making it a struct? What's wrong with __bitwise and letting > sparse catch conversions? People don't run sparse. I happen to have a built allmodconfig tree here and running make C=2 fs/ gives 1147 lines of warnings. Why would adding more warnings help?