Changes in 4.9.333 NFSv4.1: Handle RECLAIM_COMPLETE trunking errors NFSv4.1: We must always send RECLAIM_COMPLETE after a reboot nfs4: Fix kmemleak when allocate slot failed nfc: s3fwrn5: Fix potential memory leak in s3fwrn5_nci_send() nfc: nfcmrvl: Fix potential memory leak in nfcmrvl_i2c_nci_send() net: fec: fix improper use of NETDEV_TX_BUSY ata: pata_legacy: fix pdc20230_set_piomode() net: sched: Fix use after free in red_enqueue() ipvs: use explicitly signed chars rose: Fix NULL pointer dereference in rose_send_frame() mISDN: fix possible memory leak in mISDN_register_device() isdn: mISDN: netjet: fix wrong check of device registration btrfs: fix ulist leaks in error paths of qgroup self tests Bluetooth: L2CAP: Fix use-after-free caused by l2cap_reassemble_sdu Bluetooth: L2CAP: fix use-after-free in l2cap_conn_del() net: mdio: fix undefined behavior in bit shift for __mdiobus_register media: s5p_cec: limit msg.len to CEC_MAX_MSG_SIZE media: dvb-frontends/drxk: initialize err to 0 i2c: xiic: Add platform module alias Bluetooth: L2CAP: Fix attempting to access uninitialized memory btrfs: fix type of parameter generation in btrfs_get_dentry ALSA: usb-audio: Add quirks for MacroSilicon MS2100/MS2106 devices parisc: Make 8250_gsc driver dependend on CONFIG_PARISC parisc: Export iosapic_serial_irq() symbol for serial port driver ext4: fix warning in 'ext4_da_release_space' KVM: x86: Mask off reserved bits in CPUID.80000008H KVM: x86: emulator: em_sysexit should update ctxt->mode KVM: x86: emulator: introduce emulator_recalc_and_set_mode KVM: x86: emulator: update the emulation mode after CR0 write wifi: brcmfmac: Fix potential buffer overflow in brcmf_fweh_event_worker() Linux 4.9.333 Signed-off-by: Greg Kroah-Hartman <gregkh@google.com> Change-Id: I4e625255dde9b58a936a191b58d66deff787003b
25 lines
493 B
C
25 lines
493 B
C
#ifndef BTRFS_EXPORT_H
|
|
#define BTRFS_EXPORT_H
|
|
|
|
#include <linux/exportfs.h>
|
|
|
|
extern const struct export_operations btrfs_export_ops;
|
|
|
|
struct btrfs_fid {
|
|
u64 objectid;
|
|
u64 root_objectid;
|
|
u32 gen;
|
|
|
|
u64 parent_objectid;
|
|
u32 parent_gen;
|
|
|
|
u64 parent_root_objectid;
|
|
} __attribute__ ((packed));
|
|
|
|
struct dentry *btrfs_get_dentry(struct super_block *sb, u64 objectid,
|
|
u64 root_objectid, u64 generation,
|
|
int check_generation);
|
|
struct dentry *btrfs_get_parent(struct dentry *child);
|
|
|
|
#endif
|