]> git.saurik.com Git - apple/system_cmds.git/blobdiff - fs_usage.tproj/fs_usage.c
system_cmds-735.30.2.tar.gz
[apple/system_cmds.git] / fs_usage.tproj / fs_usage.c
index 2cfb4eb148711fc2431f7688aaff9273c9705e46..24ec95886a08e415ab68824f3794be3ac2dced67 100644 (file)
@@ -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)