* [PATCH] apparmor: Change to use DEFINE_SHOW_ATTRIBUTE macro
@ 2018-11-06 14:32 Yangtao Li
2018-11-06 22:34 ` kbuild test robot
2018-11-07 1:17 ` kbuild test robot
0 siblings, 2 replies; 4+ messages in thread
From: Yangtao Li @ 2018-11-06 14:32 UTC (permalink / raw)
To: john.johansen, jmorris, serge
Cc: linux-security-module, linux-kernel, Yangtao Li
Use DEFINE_SHOW_ATTRIBUTE macro to simplify the code.
Signed-off-by: Yangtao Li <tiny.windzz@gmail.com>
---
security/apparmor/apparmorfs.c | 15 ++-------------
1 file changed, 2 insertions(+), 13 deletions(-)
diff --git a/security/apparmor/apparmorfs.c b/security/apparmor/apparmorfs.c
index e09fe4d7307c..0e80ea4a3f6b 100644
--- a/security/apparmor/apparmorfs.c
+++ b/security/apparmor/apparmorfs.c
@@ -977,7 +977,7 @@ static const struct file_operations aa_sfs_access = {
.llseek = generic_file_llseek,
};
-static int aa_sfs_seq_show(struct seq_file *seq, void *v)
+static int aa_sfs_seq_file_show(struct seq_file *seq, void *v)
{
struct aa_sfs_entry *fs_file = seq->private;
@@ -1002,18 +1002,7 @@ static int aa_sfs_seq_show(struct seq_file *seq, void *v)
return 0;
}
-static int aa_sfs_seq_open(struct inode *inode, struct file *file)
-{
- return single_open(file, aa_sfs_seq_show, inode->i_private);
-}
-
-const struct file_operations aa_sfs_seq_file_ops = {
- .owner = THIS_MODULE,
- .open = aa_sfs_seq_open,
- .read = seq_read,
- .llseek = seq_lseek,
- .release = single_release,
-};
+DEFINE_SHOW_ATTRIBUTE(aa_sfs_seq_file);
/*
* profile based file operations
--
2.17.0
^ permalink raw reply related [flat|nested] 4+ messages in thread* Re: [PATCH] apparmor: Change to use DEFINE_SHOW_ATTRIBUTE macro
2018-11-06 14:32 [PATCH] apparmor: Change to use DEFINE_SHOW_ATTRIBUTE macro Yangtao Li
@ 2018-11-06 22:34 ` kbuild test robot
2018-11-07 1:17 ` kbuild test robot
1 sibling, 0 replies; 4+ messages in thread
From: kbuild test robot @ 2018-11-06 22:34 UTC (permalink / raw)
To: Yangtao Li
Cc: kbuild-all, john.johansen, jmorris, serge, linux-security-module,
linux-kernel, Yangtao Li
[-- Attachment #1: Type: text/plain, Size: 1461 bytes --]
Hi Yangtao,
Thank you for the patch! Yet something to improve:
[auto build test ERROR on security/next-testing]
[also build test ERROR on v4.20-rc1 next-20181106]
[if your patch is applied to the wrong git tree, please drop us a note to help improve the system]
url: https://github.com/0day-ci/linux/commits/Yangtao-Li/apparmor-Change-to-use-DEFINE_SHOW_ATTRIBUTE-macro/20181107-004056
base: https://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git next-testing
config: i386-randconfig-s0-201844 (attached as .config)
compiler: gcc-6 (Debian 6.4.0-9) 6.4.0 20171026
reproduce:
# save the attached .config to linux build tree
make ARCH=i386
All errors (new ones prefixed by >>):
>> security/apparmor/apparmorfs.o:(.data+0x1c4): undefined reference to `aa_sfs_seq_file_ops'
security/apparmor/apparmorfs.o:(.data+0x2b4): undefined reference to `aa_sfs_seq_file_ops'
security/apparmor/apparmorfs.o:(.data+0x2cc): undefined reference to `aa_sfs_seq_file_ops'
security/apparmor/apparmorfs.o:(.data+0x2e4): undefined reference to `aa_sfs_seq_file_ops'
security/apparmor/apparmorfs.o:(.data+0x314): undefined reference to `aa_sfs_seq_file_ops'
security/apparmor/apparmorfs.o:(.data+0x32c): more undefined references to `aa_sfs_seq_file_ops' follow
---
0-DAY kernel test infrastructure Open Source Technology Center
https://lists.01.org/pipermail/kbuild-all Intel Corporation
[-- Attachment #2: .config.gz --]
[-- Type: application/gzip, Size: 35552 bytes --]
^ permalink raw reply [flat|nested] 4+ messages in thread* Re: [PATCH] apparmor: Change to use DEFINE_SHOW_ATTRIBUTE macro
2018-11-06 14:32 [PATCH] apparmor: Change to use DEFINE_SHOW_ATTRIBUTE macro Yangtao Li
2018-11-06 22:34 ` kbuild test robot
@ 2018-11-07 1:17 ` kbuild test robot
2018-11-07 1:20 ` Frank Lee
1 sibling, 1 reply; 4+ messages in thread
From: kbuild test robot @ 2018-11-07 1:17 UTC (permalink / raw)
To: Yangtao Li
Cc: kbuild-all, john.johansen, jmorris, serge, linux-security-module,
linux-kernel, Yangtao Li
[-- Attachment #1: Type: text/plain, Size: 1630 bytes --]
Hi Yangtao,
Thank you for the patch! Yet something to improve:
[auto build test ERROR on security/next-testing]
[also build test ERROR on v4.20-rc1 next-20181106]
[if your patch is applied to the wrong git tree, please drop us a note to help improve the system]
url: https://github.com/0day-ci/linux/commits/Yangtao-Li/apparmor-Change-to-use-DEFINE_SHOW_ATTRIBUTE-macro/20181107-004056
base: https://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git next-testing
config: ia64-allmodconfig (attached as .config)
compiler: ia64-linux-gcc (GCC) 8.1.0
reproduce:
wget https://raw.githubusercontent.com/intel/lkp-tests/master/sbin/make.cross -O ~/bin/make.cross
chmod +x ~/bin/make.cross
# save the attached .config to linux build tree
GCC_VERSION=8.1.0 make.cross ARCH=ia64
All errors (new ones prefixed by >>):
>> security/apparmor/apparmorfs.o:(.data.rel+0x110): undefined reference to `aa_sfs_seq_file_ops'
security/apparmor/apparmorfs.o:(.data.rel+0x228): undefined reference to `aa_sfs_seq_file_ops'
security/apparmor/apparmorfs.o:(.data.rel+0x250): undefined reference to `aa_sfs_seq_file_ops'
security/apparmor/apparmorfs.o:(.data.rel+0x278): undefined reference to `aa_sfs_seq_file_ops'
security/apparmor/apparmorfs.o:(.data.rel+0x2c8): undefined reference to `aa_sfs_seq_file_ops'
security/apparmor/apparmorfs.o:(.data.rel+0x2f0): more undefined references to `aa_sfs_seq_file_ops' follow
---
0-DAY kernel test infrastructure Open Source Technology Center
https://lists.01.org/pipermail/kbuild-all Intel Corporation
[-- Attachment #2: .config.gz --]
[-- Type: application/gzip, Size: 51795 bytes --]
^ permalink raw reply [flat|nested] 4+ messages in thread* Re: [PATCH] apparmor: Change to use DEFINE_SHOW_ATTRIBUTE macro
2018-11-07 1:17 ` kbuild test robot
@ 2018-11-07 1:20 ` Frank Lee
0 siblings, 0 replies; 4+ messages in thread
From: Frank Lee @ 2018-11-07 1:20 UTC (permalink / raw)
To: lkp
Cc: kbuild-all, John Johansen, jmorris, serge, linux-security-module,
linux-kernel
Sorry,I will send the second version of the patch.
--Yangtao
On Wed, Nov 7, 2018 at 9:17 AM kbuild test robot <lkp@intel.com> wrote:
>
> Hi Yangtao,
>
> Thank you for the patch! Yet something to improve:
>
> [auto build test ERROR on security/next-testing]
> [also build test ERROR on v4.20-rc1 next-20181106]
> [if your patch is applied to the wrong git tree, please drop us a note to help improve the system]
>
> url: https://github.com/0day-ci/linux/commits/Yangtao-Li/apparmor-Change-to-use-DEFINE_SHOW_ATTRIBUTE-macro/20181107-004056
> base: https://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git next-testing
> config: ia64-allmodconfig (attached as .config)
> compiler: ia64-linux-gcc (GCC) 8.1.0
> reproduce:
> wget https://raw.githubusercontent.com/intel/lkp-tests/master/sbin/make.cross -O ~/bin/make.cross
> chmod +x ~/bin/make.cross
> # save the attached .config to linux build tree
> GCC_VERSION=8.1.0 make.cross ARCH=ia64
>
> All errors (new ones prefixed by >>):
>
> >> security/apparmor/apparmorfs.o:(.data.rel+0x110): undefined reference to `aa_sfs_seq_file_ops'
> security/apparmor/apparmorfs.o:(.data.rel+0x228): undefined reference to `aa_sfs_seq_file_ops'
> security/apparmor/apparmorfs.o:(.data.rel+0x250): undefined reference to `aa_sfs_seq_file_ops'
> security/apparmor/apparmorfs.o:(.data.rel+0x278): undefined reference to `aa_sfs_seq_file_ops'
> security/apparmor/apparmorfs.o:(.data.rel+0x2c8): undefined reference to `aa_sfs_seq_file_ops'
> security/apparmor/apparmorfs.o:(.data.rel+0x2f0): more undefined references to `aa_sfs_seq_file_ops' follow
>
> ---
> 0-DAY kernel test infrastructure Open Source Technology Center
> https://lists.01.org/pipermail/kbuild-all Intel Corporation
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2018-11-07 1:21 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-11-06 14:32 [PATCH] apparmor: Change to use DEFINE_SHOW_ATTRIBUTE macro Yangtao Li
2018-11-06 22:34 ` kbuild test robot
2018-11-07 1:17 ` kbuild test robot
2018-11-07 1:20 ` Frank Lee
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox