X-Git-Url: https://git.saurik.com/apple/system_cmds.git/blobdiff_plain/b58caf92d598c70ddd398b3909b0a2b8b5a110e1..50f84f3edf8c5d2478e7ac178963d1664fa44630:/fs_usage.tproj/fs_usage.c diff --git a/fs_usage.tproj/fs_usage.c b/fs_usage.tproj/fs_usage.c index 2cfb4eb..24ec958 100644 --- a/fs_usage.tproj/fs_usage.c +++ b/fs_usage.tproj/fs_usage.c @@ -205,6 +205,7 @@ void cache_disk_names(void); #define P_DISKIO_NOCACHE (DKIO_NOCACHE << 2) #define P_DISKIO_TIER_MASK (DKIO_TIER_MASK << 2) #define P_DISKIO_TIER_SHIFT (DKIO_TIER_SHIFT + 2) +#define P_DISKIO_TIER_UPGRADE (DKIO_TIER_UPGRADE << 2) #define P_DISKIO (FSDBG_CODE(DBG_DKRW, 0)) #define P_DISKIO_DONE (P_DISKIO | (DKIO_DONE << 2)) @@ -3518,6 +3519,10 @@ diskio_print(struct diskio *dio) buf[len++] = 'T'; if (tier > 0 && tier < 10) buf[len++] = '0' + tier; + + if (type & P_DISKIO_TIER_UPGRADE) { + buf[len++] = 'U'; + } } if (type & P_DISKIO_PASSIVE)