Subversion Repositories HelenOS

Rev

Rev 277 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 277 Rev 347
Line 183... Line 183...
183
    }
183
    }
184
 
184
 
185
    return;
185
    return;
186
   
186
   
187
fs_found:
187
fs_found:
188
    printf("%L: MPS Floating Pointer Structure\n", fs);
188
    printf("%P: MPS Floating Pointer Structure\n", fs);
189
 
189
 
190
    frame_not_free((__address) fs);
190
    frame_not_free((__address) fs);
191
 
191
 
192
    if (fs->config_type == 0 && fs->configuration_table) {
192
    if (fs->config_type == 0 && fs->configuration_table) {
193
        if (fs->mpfib2 >> 7) {
193
        if (fs->mpfib2 >> 7) {
Line 405... Line 405...
405
    __u8 *cur;
405
    __u8 *cur;
406
 
406
 
407
    for (cur = ext; cur < ext + ct->ext_table_length; cur += cur[CT_EXT_ENTRY_LEN]) {
407
    for (cur = ext; cur < ext + ct->ext_table_length; cur += cur[CT_EXT_ENTRY_LEN]) {
408
        switch (cur[CT_EXT_ENTRY_TYPE]) {
408
        switch (cur[CT_EXT_ENTRY_TYPE]) {
409
            default:
409
            default:
410
                printf("%L: skipping MP Configuration Table extended entry type %d\n", cur, cur[CT_EXT_ENTRY_TYPE]);
410
                printf("%P: skipping MP Configuration Table extended entry type %d\n", cur, cur[CT_EXT_ENTRY_TYPE]);
411
                break;
411
                break;
412
        }
412
        }
413
    }
413
    }
414
}
414
}
415
 
415