All of lore.kernel.org
 help / color / mirror / Atom feed
From: tip-bot for Peter Jones <tipbot@zytor.com>
To: linux-tip-commits@vger.kernel.org
Cc: tglx@linutronix.de, matt@codeblueprint.co.uk,
	luto@amacapital.net, linux-kernel@vger.kernel.org,
	ard.biesheuvel@linaro.org, mingo@kernel.org, pjones@redhat.com,
	torvalds@linux-foundation.org, brgerst@gmail.com,
	peterz@infradead.org, hpa@zytor.com, bp@alien8.de,
	dvlasenk@redhat.com
Subject: [tip:efi/core] efivarfs: Make efivarfs_file_ioctl() static
Date: Fri, 6 May 2016 23:35:19 -0700	[thread overview]
Message-ID: <tip-6c5450ef66816216e574885cf8d3ddb31ef77428@git.kernel.org> (raw)
In-Reply-To: <1462570771-13324-6-git-send-email-matt@codeblueprint.co.uk>

Commit-ID:  6c5450ef66816216e574885cf8d3ddb31ef77428
Gitweb:     http://git.kernel.org/tip/6c5450ef66816216e574885cf8d3ddb31ef77428
Author:     Peter Jones <pjones@redhat.com>
AuthorDate: Fri, 6 May 2016 22:39:31 +0100
Committer:  Ingo Molnar <mingo@kernel.org>
CommitDate: Sat, 7 May 2016 07:06:13 +0200

efivarfs: Make efivarfs_file_ioctl() static

There are no callers except through the file_operations struct below
this, so it should be static like everything else here.

Signed-off-by: Peter Jones <pjones@redhat.com>
Signed-off-by: Matt Fleming <matt@codeblueprint.co.uk>
Cc: Andy Lutomirski <luto@amacapital.net>
Cc: Ard Biesheuvel <ard.biesheuvel@linaro.org>
Cc: Borislav Petkov <bp@alien8.de>
Cc: Brian Gerst <brgerst@gmail.com>
Cc: Denys Vlasenko <dvlasenk@redhat.com>
Cc: H. Peter Anvin <hpa@zytor.com>
Cc: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: linux-efi@vger.kernel.org
Link: http://lkml.kernel.org/r/1462570771-13324-6-git-send-email-matt@codeblueprint.co.uk
Signed-off-by: Ingo Molnar <mingo@kernel.org>
---
 fs/efivarfs/file.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/fs/efivarfs/file.c b/fs/efivarfs/file.c
index d48e0d2..5f22e74 100644
--- a/fs/efivarfs/file.c
+++ b/fs/efivarfs/file.c
@@ -157,7 +157,7 @@ efivarfs_ioc_setxflags(struct file *file, void __user *arg)
 	return 0;
 }
 
-long
+static long
 efivarfs_file_ioctl(struct file *file, unsigned int cmd, unsigned long p)
 {
 	void __user *arg = (void __user *)p;

      reply	other threads:[~2016-05-07  6:36 UTC|newest]

Thread overview: 21+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-05-06 21:39 [GIT PULL 0/5] EFI changes for v4.7 Matt Fleming
2016-05-06 21:39 ` [PATCH 1/5] efi/capsule: Make efi_capsule_pending() lockless Matt Fleming
2016-05-07  6:33   ` [tip:efi/core] " tip-bot for Matt Fleming
2016-05-06 21:39 ` [PATCH 2/5] efibc: Fix excessive stack footprint warning Matt Fleming
2016-05-07  6:34   ` [tip:efi/core] " tip-bot for Jeremy Compostella
2016-05-09 23:41   ` [PATCH 2/5] " Elliott, Robert (Persistent Memory)
2016-05-10  8:40     ` Compostella, Jeremy
2016-05-10  8:40       ` Compostella, Jeremy
2016-05-11 12:43       ` Matt Fleming
2016-05-11 12:43         ` Matt Fleming
2016-05-11 15:16         ` Compostella, Jeremy
2016-05-11 15:16           ` Compostella, Jeremy
2016-05-14 19:20           ` Matt Fleming
2016-05-14 19:20             ` Matt Fleming
2016-05-06 21:39 ` [PATCH 3/5] efi/capsule: Move 'capsule' to the stack in efi_capsule_supported() Matt Fleming
2016-05-07  6:34   ` [tip:efi/core] " tip-bot for Matt Fleming
2016-05-06 21:39 ` [PATCH 4/5] efi: Merge boolean flag arguments Matt Fleming
2016-05-07  6:34   ` [tip:efi/core] " tip-bot for Julia Lawall
2016-05-06 21:39 ` [PATCH 5/5] efivarfs: Make efivarfs_file_ioctl static Matt Fleming
2016-05-06 21:39   ` Matt Fleming
2016-05-07  6:35   ` tip-bot for Peter Jones [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=tip-6c5450ef66816216e574885cf8d3ddb31ef77428@git.kernel.org \
    --to=tipbot@zytor.com \
    --cc=ard.biesheuvel@linaro.org \
    --cc=bp@alien8.de \
    --cc=brgerst@gmail.com \
    --cc=dvlasenk@redhat.com \
    --cc=hpa@zytor.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-tip-commits@vger.kernel.org \
    --cc=luto@amacapital.net \
    --cc=matt@codeblueprint.co.uk \
    --cc=mingo@kernel.org \
    --cc=peterz@infradead.org \
    --cc=pjones@redhat.com \
    --cc=tglx@linutronix.de \
    --cc=torvalds@linux-foundation.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.