Changeset e5a2ee8 in mainline


Ignore:
Timestamp:
2006-11-18T12:36:06Z (18 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
79f119b9
Parents:
73a1fe5
Message:

Indentation, formatting and minor changes.

Location:
kernel
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • kernel/genarch/src/fb/fb.c

    r73a1fe5 re5a2ee8  
    383383                break;
    384384        default:
    385                 panic("Unsupported bpp");
     385                panic("Unsupported bpp.\n");
    386386        }
    387387       
     
    416416                order = 0;
    417417        else
    418                 order = fnzb(pages-1)+1;
    419 
    420         dbbuffer = frame_alloc(order,FRAME_ATOMIC | FRAME_KA);
     418                order = fnzb(pages - 1) + 1;
     419
     420        dbbuffer = frame_alloc(order, FRAME_ATOMIC | FRAME_KA);
    421421        if (!dbbuffer)
    422422                printf("Failed to allocate scroll buffer.\n");
  • kernel/generic/src/mm/frame.c

    r73a1fe5 re5a2ee8  
    231231 * @param pzone Pointer to preferred zone or NULL, on return contains zone number
    232232 */
    233 static zone_t * find_free_zone_lock(uint8_t order, int *pzone)
     233static zone_t * find_free_zone_and_lock(uint8_t order, int *pzone)
    234234{
    235235        int i;
     
    326326        if (is_left) {
    327327                index = (frame_index(zone, frame)) + (1 << frame->buddy_order);
    328         } else { // if (is_right)
     328        } else {        /* if (is_right) */
    329329                index = (frame_index(zone, frame)) - (1 << frame->buddy_order);
    330330        }
     
    947947         * First, find suitable frame zone.
    948948         */
    949         zone = find_free_zone_lock(order, pzone);
     949        zone = find_free_zone_and_lock(order, pzone);
    950950       
    951951        /* If no memory, reclaim some slab memory,
     
    954954                freed = slab_reclaim(0);
    955955                if (freed)
    956                         zone = find_free_zone_lock(order, pzone);
     956                        zone = find_free_zone_and_lock(order, pzone);
    957957                if (!zone) {
    958958                        freed = slab_reclaim(SLAB_RECLAIM_ALL);
    959959                        if (freed)
    960                                 zone = find_free_zone_lock(order, pzone);
     960                                zone = find_free_zone_and_lock(order, pzone);
    961961                }
    962962        }
     
    10491049       
    10501050        for (i=0; i < count; i++) {
    1051                 zone = find_zone_and_lock(start+i,&prefzone);
     1051                zone = find_zone_and_lock(start + i, &prefzone);
    10521052                if (!zone) /* PFN not found */
    10531053                        continue;
    1054                 zone_mark_unavailable(zone, start+i-zone->base);
     1054                zone_mark_unavailable(zone, start + i - zone->base);
    10551055
    10561056                spinlock_unlock(&zone->lock);
     
    10661066        if (config.cpu_active == 1) {
    10671067                zones.count = 0;
    1068                 spinlock_initialize(&zones.lock,"zones_glob_lock");
     1068                spinlock_initialize(&zones.lock, "zones.lock");
    10691069        }
    10701070        /* Tell the architecture to create some memory */
Note: See TracChangeset for help on using the changeset viewer.