From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752629Ab3AUBdW (ORCPT ); Sun, 20 Jan 2013 20:33:22 -0500 Received: from ozlabs.org ([203.10.76.45]:42237 "EHLO ozlabs.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752534Ab3AUBdV (ORCPT ); Sun, 20 Jan 2013 20:33:21 -0500 From: Rusty Russell To: Linus Torvalds Cc: LKML , Alexander Graf , Prarit Bhargava , Sasha Levin Subject: Re: [PULL] Module fixes, and a virtio block fix. In-Reply-To: References: <87zk03wg7r.fsf@rustcorp.com.au> User-Agent: Notmuch/0.14 (http://notmuchmail.org) Emacs/23.4.1 (i686-pc-linux-gnu) Date: Mon, 21 Jan 2013 12:02:47 +1030 Message-ID: <87fw1vwcao.fsf@rustcorp.com.au> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Linus Torvalds writes: > On Sun, Jan 20, 2013 at 4:08 PM, Rusty Russell wrote: >> >> are available in the git repository at: >> >> git://git.kernel.org/pub/scm/linux/kernel/git/rusty/linux.git fixes > > Ugh. > > You *meant* the "fixes-for-linus" tag, not the "fixes" branch. > > Either you mistyped, or you have one of the unfortunate old git > versions that silently "fixed" the branch name for you to the first > one it saw. > > Either way, please fix for future pull requests... Ugh indeed. Due to the delay on git.kernel.org, git request-pull fails. It *looks* like it succeeds, except the warning, but (as we learned last time I screwed up), it doesn't put the branchname because it can't know. So this time I fixed it manually. Badly. For want of a better solution, I'll now resort to sending pull requests with the anti-social gitolite URL in it, like so: The following changes since commit a7f2a366f62319dfebf8d4dfe8b211f631c78457: ima: fallback to MODULE_SIG_ENFORCE for existing kernel module syscall (2012-12-24 09:35:48 -0500) are available in the git repository at: gitolite@ra.kernel.org:/pub/scm/linux/kernel/git/rusty/linux.git tags/fixes-for-linus for you to fetch changes up to 8f82d479da05bd7df8cca3a5fbc0273f73b601c0: module: potential deadlock in error path (2013-01-21 11:29:33 +1030) ---------------------------------------------------------------- Various minor fixes, but a slightly more complex one to fix the per-cpu overload problem introduced recently by kvm id changes. (Now with an error path fix from Dan, thanks) ---------------------------------------------------------------- Alexander Graf (1): virtio-blk: Don't free ida when disk is in use Dan Carpenter (1): module: potential deadlock in error path Rusty Russell (2): module: add new state MODULE_STATE_UNFORMED. module: put modules in list much earlier. Sasha Levin (1): module: prevent warning when finit_module a 0 sized file drivers/block/virtio_blk.c | 7 +- include/linux/module.h | 10 +-- kernel/debug/kdb/kdb_main.c | 2 + kernel/module.c | 156 ++++++++++++++++++++++++++++++------------- lib/bug.c | 1 + 5 files changed, 124 insertions(+), 52 deletions(-)