summaryrefslogtreecommitdiff
path: root/include/linux/device_cgroup.h
blob: 0b0d9c39ed670d10c1ddf7d9863fbbb67cfd356b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#include <linux/module.h>
#include <linux/fs.h>

#ifdef CONFIG_CGROUP_DEVICE
extern int devcgroup_inode_permission(struct inode *inode, int mask);
extern int devcgroup_inode_mknod(int mode, dev_t dev);
#else
static inline int devcgroup_inode_permission(struct inode *inode, int mask)
{ return 0; }
static inline int devcgroup_inode_mknod(int mode, dev_t dev)
{ return 0; }
#endif
Darrick J. Wong 2024-11-05xfs: scrub the realtime group superblockDarrick J. Wong 2024-11-05xfs: record rt group metadata errors in the health systemDarrick J. Wong 2024-11-05xfs: check metadata directory file path connectivityDarrick J. Wong 2024-11-05xfs: add a generic group pointer to the btree cursorChristoph Hellwig 2024-11-05xfs: move metadata health tracking to the generic group structureChristoph Hellwig 2024-11-05xfs: switch perag iteration from the for_each macros to a while based iteratorChristoph Hellwig 2024-04-23xfs: report directory tree corruption in the health informationDarrick J. Wong 2024-02-22xfs: refactor the btree cursor allocation logic in xchk_ag_btcur_initChristoph Hellwig 2024-02-22xfs: update health status if we get a clean bill of healthDarrick J. Wong 2024-02-22xfs: remember sick inodes that get inactivatedDarrick J. Wong 2024-02-22xfs: separate the marking of sick and checked metadataDarrick J. Wong 2024-02-22xfs: teach scrub to check file nlinksDarrick J. Wong 2024-02-22xfs: implement live quotacheck inode scanDarrick J. Wong 2023-12-22xfs/health: cleanup, remove duplicated includingWang Jinchao 2023-12-15xfs: set inode sick state flags when we zap either ondisk forkDarrick J. Wong 2023-08-10xfs: always rescan allegedly healthy per-ag metadata after repairDarrick J. Wong 2023-04-11xfs: allow queued AG intents to drain before scrubbingDarrick J. Wong 2023-04-11xfs: update copyright years for scrub/ filesDarrick J. Wong 2023-04-11xfs: fix author and spdx headers on scrub/ filesDarrick J. Wong 2022-07-07xfs: make is_log_ag() a first class helperDave Chinner