Revision 332019e23a51db1aa46fec695a9a763445fbe09f authored by Linus Torvalds on 14 August 2022, 00:31:18 UTC, committed by Linus Torvalds on 14 August 2022, 00:31:18 UTC
Pull more cifs updates from Steve French:

 - two fixes for stable, one for a lock length miscalculation, and
   another fixes a lease break timeout bug

 - improvement to handle leases, allows the close timeout to be
   configured more safely

 - five restructuring/cleanup patches

* tag '5.20-rc-smb3-client-fixes-part2' of git://git.samba.org/sfrench/cifs-2.6:
  cifs: Do not access tcon->cfids->cfid directly from is_path_accessible
  cifs: Add constructor/destructors for tcon->cfid
  SMB3: fix lease break timeout when multiple deferred close handles for the same file.
  smb3: allow deferred close timeout to be configurable
  cifs: Do not use tcon->cfid directly, use the cfid we get from open_cached_dir
  cifs: Move cached-dir functions into a separate file
  cifs: Remove {cifs,nfs}_fscache_release_page()
  cifs: fix lock length calculation
2 parent s 8549a26 + 7eb59a9
Raw File
relocs_64.c
// SPDX-License-Identifier: GPL-2.0
#include "relocs.h"

#define ELF_BITS 64

#define ELF_MACHINE             EM_X86_64
#define ELF_MACHINE_NAME        "x86_64"
#define SHT_REL_TYPE            SHT_RELA
#define Elf_Rel                 Elf64_Rela

#define ELF_CLASS               ELFCLASS64
#define ELF_R_SYM(val)          ELF64_R_SYM(val)
#define ELF_R_TYPE(val)         ELF64_R_TYPE(val)
#define ELF_ST_TYPE(o)          ELF64_ST_TYPE(o)
#define ELF_ST_BIND(o)          ELF64_ST_BIND(o)
#define ELF_ST_VISIBILITY(o)    ELF64_ST_VISIBILITY(o)

#include "relocs.c"
back to top