summaryrefslogtreecommitdiff
path: root/include/linux/path.h
blob: 915e0c382a51fad7a3169748664b5e2153fa645e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef _LINUX_PATH_H
#define _LINUX_PATH_H

struct dentry;
struct vfsmount;

struct path {
	struct vfsmount *mnt;
	struct dentry *dentry;
};

extern void path_get(struct path *);
extern void path_put(struct path *);

#endif  /* _LINUX_PATH_H */
486324f53577db058cbe81ba'>Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/netDavid S. Miller 2019-06-02net: ethernet: improve eth_platform_get_mac_addressHeiner Kallweit 2019-05-30treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 152Thomas Gleixner 2019-05-21treewide: Add SPDX license identifier - Makefile/KconfigThomas Gleixner 2019-05-07net: ethernet: support of_get_mac_address new ERR_PTR errorPetr Štetiar 2019-05-05net: dsa: Allow drivers to filter packets they can decode source port fromVladimir Oltean 2019-04-23net: pass net_device argument to the eth_get_headlenStanislav Fomichev 2019-04-23net: plumb network namespace into __skb_flow_dissectStanislav Fomichev 2019-02-22net/ethernet: Add parse_protocol header_ops supportMaxim Mikityanskiy 2018-12-03net: ethernet: provide nvmem_get_mac_address()Bartosz Golaszewski 2018-11-15net: slightly optimize eth_type_transLi RongQing 2018-06-26net: Convert GRO SKB handling to list_head.David Miller 2018-05-08net: core: rework basic flow dissection helperPaolo Abeni 2017-06-16networking: make skb_push & __skb_push return void pointersJohannes Berg