/* SPDX-License-Identifier: GPL-2.0 */ #ifndef _LINUX_FS_STACK_H #define _LINUX_FS_STACK_H /* This file defines generic functions used primarily by stackable * filesystems; none of these functions require i_mutex to be held. */ #include /* externs for fs/stack.c */ extern void fsstack_copy_attr_all(struct inode *dest, const struct inode *src); extern void fsstack_copy_inode_size(struct inode *dst, struct inode *src); /* inlines */ static inline void fsstack_copy_attr_atime(struct inode *dest, const struct inode *src) { dest->i_atime = src->i_atime; } static inline void fsstack_copy_attr_times(struct inode *dest, const struct inode *src) { dest->i_atime = src->i_atime; dest->i_mtime = src->i_mtime; dest->i_ctime = src->i_ctime; } #endif /* _LINUX_FS_STACK_H */ 7d0c358e9959abc9f58661aea'/> Hosts the 0x221E linux distro kernel.Ubuntu
summaryrefslogtreecommitdiff
path: root/drivers/net/wireless/broadcom/b43
AgeCommit message (Expand)Author
2024-03-21wifi: b43: Convert sprintf/snprintf to sysfs_emitLi Zhijian
2024-02-28wifi: b43: silence sparse warningsJohannes Berg
2024-02-08wifi: mac80211: simplify non-chanctx driversJohannes Berg
2024-01-10wifi: b43: Disable QoS for bcm4331Rahul Rameshbabu
2024-01-10wifi: b43: Stop correct queue in DMA worker when QoS is disabledRahul Rameshbabu
2024-01-10wifi: b43: Stop/wake correct queue in PIO Tx path when QoS is disabledRahul Rameshbabu
2024-01-10wifi: b43: Stop/wake correct queue in DMA Tx path when QoS is disabledRahul Rameshbabu
2023-10-23wifi: mac80211: rename ieee80211_tx_status() to ieee80211_tx_status_skb()Kalle Valo
2023-05-17wifi: b43: fix incorrect __packed annotationArnd Bergmann
2022-11-28wifi: b43: remove reference to removed config B43_PCMCIALukas Bulwahn
2022-10-10wifi: mac80211: add wake_tx_queue callback to driversAlexander Wetzel