* @brief Clean page cache for a specific mount point without releasing address spaces * * This function cleans up all page cache entries associated with the given mount point * but keeps the address spaces intact by using a dummy callback function. * * @param[in] mnt Pointer to the mount point structure to be cleaned * * @note Typical usage scenarios: * - Filesystem maintenance operations
| 270 | * @see _pcache_clean() |
| 271 | */ |
| 272 | void dfs_pcache_clean(struct dfs_mnt *mnt) |
| 273 | { |
| 274 | _pcache_clean(mnt, _dummy_cb); |
| 275 | } |
| 276 | |
| 277 | /** |
| 278 | * @brief Check and enforce page cache memory limit |
no test coverage detected