From mboxrd@z Thu Jan 1 00:00:00 1970 From: Christoph Hellwig Date: Thu, 19 Sep 2019 19:07:11 +0200 Subject: [Cluster-devel] [GIT PULL] iomap: new code for 5.4 In-Reply-To: References: <20190917152140.GU2229799@magnolia> <20190919034502.GJ2229799@magnolia> Message-ID: <20190919170711.GA9065@lst.de> List-Id: To: cluster-devel.redhat.com MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit On Thu, Sep 19, 2019 at 10:03:30AM -0700, Linus Torvalds wrote: > It's just that we've survived three decades without that list_pop(), > and I don't want to make our header files even bigger and more complex > unless we actually have multiple real users. I personally surived with it, but really hated writing the open coded list_for_each_entry + list_del or while list_first_entry_or_null + ?ist_del when I could have a nice primitive for it. I finally decided to just add that helper..