Skip to content
Snippets Groups Projects
Select Git revision
  • d2935de7e4fd3f873976f1872b505584b727574c
  • vme-testing default
  • ci-test
  • master
  • remoteproc
  • am625-sk-ov5640
  • pcal6534-upstreaming
  • lps22df-upstreaming
  • msc-upstreaming
  • imx8mp
  • iio/noa1305
  • vme-next
  • vme-next-4.14-rc4
  • v4.14-rc4
  • v4.14-rc3
  • v4.14-rc2
  • v4.14-rc1
  • v4.13
  • vme-next-4.13-rc7
  • v4.13-rc7
  • v4.13-rc6
  • v4.13-rc5
  • v4.13-rc4
  • v4.13-rc3
  • v4.13-rc2
  • v4.13-rc1
  • v4.12
  • v4.12-rc7
  • v4.12-rc6
  • v4.12-rc5
  • v4.12-rc4
  • v4.12-rc3
32 results

inode.c

Blame
    • David Howells's avatar
      d2935de7
      vfs: Convert bpf to use the new mount API · d2935de7
      David Howells authored
      
      Convert the bpf filesystem to the new internal mount API as the old
      one will be obsoleted and removed.  This allows greater flexibility in
      communication of mount parameters between userspace, the VFS and the
      filesystem.
      
      See Documentation/filesystems/mount_api.txt for more information.
      
      Signed-off-by: default avatarDavid Howells <dhowells@redhat.com>
      cc: Alexei Starovoitov <ast@kernel.org>
      cc: Daniel Borkmann <daniel@iogearbox.net>
      cc: Martin KaFai Lau <kafai@fb.com>
      cc: Song Liu <songliubraving@fb.com>
      cc: Yonghong Song <yhs@fb.com>
      cc: netdev@vger.kernel.org
      cc: bpf@vger.kernel.org
      Signed-off-by: default avatarAl Viro <viro@zeniv.linux.org.uk>
      d2935de7
      History
      vfs: Convert bpf to use the new mount API
      David Howells authored
      
      Convert the bpf filesystem to the new internal mount API as the old
      one will be obsoleted and removed.  This allows greater flexibility in
      communication of mount parameters between userspace, the VFS and the
      filesystem.
      
      See Documentation/filesystems/mount_api.txt for more information.
      
      Signed-off-by: default avatarDavid Howells <dhowells@redhat.com>
      cc: Alexei Starovoitov <ast@kernel.org>
      cc: Daniel Borkmann <daniel@iogearbox.net>
      cc: Martin KaFai Lau <kafai@fb.com>
      cc: Song Liu <songliubraving@fb.com>
      cc: Yonghong Song <yhs@fb.com>
      cc: netdev@vger.kernel.org
      cc: bpf@vger.kernel.org
      Signed-off-by: default avatarAl Viro <viro@zeniv.linux.org.uk>
    bug.h 434 B
    #ifndef _ASM_IA64_BUG_H
    #define _ASM_IA64_BUG_H
    
    #ifdef CONFIG_BUG
    #if (__GNUC__ > 3) || (__GNUC__ == 3 && __GNUC_MINOR__ >= 1)
    # define ia64_abort()	__builtin_trap()
    #else
    # define ia64_abort()	(*(volatile int *) 0 = 0)
    #endif
    #define BUG() do { printk("kernel BUG at %s:%d!\n", __FILE__, __LINE__); ia64_abort(); } while (0)
    
    /* should this BUG be made generic? */
    #define HAVE_ARCH_BUG
    #endif
    
    #include <asm-generic/bug.h>
    
    #endif