kernel.h: kill dead field
authorAlan Cox <alan@linux.intel.com>
Tue, 19 May 2015 17:28:58 +0000 (18:28 +0100)
committerAlan Cox <alan@linux.intel.com>
Tue, 19 May 2015 17:28:58 +0000 (18:28 +0100)
Kernel/include/kernel.h

index dd4db59..09a91a7 100644 (file)
@@ -334,16 +334,15 @@ typedef struct p_tab {
     void *      p_wait;         /* Address of thing waited for */
     uint16_t    p_page;         /* Page mapping data */
     uint16_t   p_page2;        /* It's really four bytes for the platform */
+    /* Update kernel.def if you change fields above this comment */
 #ifdef udata
     struct u_data *p_udata;    /* Udata pointer for platforms using dynamic udata */
 #endif
-    /* Update kernel.def if you change fields above this comment */
     /* Everything below here is overlaid by time info at exit */
     uint16_t    p_priority;     /* Process priority */
     uint32_t    p_pending;      /* Bitmask of pending signals */
     uint32_t    p_ignored;      /* Bitmask of ignored signals */
     uint32_t    p_held;         /* Bitmask of held signals */
-    struct u_block *p_ublk;     /* Pointer to udata block when not running */
     uint16_t    p_waitno;       /* wait #; for finding longest waiting proc */
     uint16_t    p_timeout;      /* timeout in centiseconds - 1 */
                                 /* 0 indicates no timeout, 1 = expired */