Changeset 11b285d in mainline for kernel/arch/ia64/src
- Timestamp:
- 2018-05-13T15:19:32Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- ad896eb
- Parents:
- 13db2044
- git-author:
- Jiří Zárevúcky <jiri.zarevucky@…> (2018-05-13 14:59:01)
- git-committer:
- Jiří Zárevúcky <jiri.zarevucky@…> (2018-05-13 15:19:32)
- Location:
- kernel/arch/ia64/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/ia64/src/ddi/ddi.c
r13db2044 r11b285d 56 56 { 57 57 if (!task->arch.iomap) { 58 task->arch.iomap = malloc(sizeof(bitmap_t) , FRAME_ATOMIC);58 task->arch.iomap = malloc(sizeof(bitmap_t)); 59 59 if (task->arch.iomap == NULL) 60 60 return ENOMEM; 61 61 62 void *store = malloc(bitmap_size(IO_MEMMAP_PAGES), 63 FRAME_ATOMIC); 62 void *store = malloc(bitmap_size(IO_MEMMAP_PAGES)); 64 63 if (store == NULL) 65 64 return ENOMEM; -
kernel/arch/ia64/src/drivers/ski.c
r13db2044 r11b285d 150 150 ); 151 151 152 instance = malloc(sizeof(ski_instance_t) , FRAME_ATOMIC);152 instance = malloc(sizeof(ski_instance_t)); 153 153 154 154 if (instance) { … … 209 209 return NULL; 210 210 211 outdev_t *skidev = malloc(sizeof(outdev_t) , FRAME_ATOMIC);211 outdev_t *skidev = malloc(sizeof(outdev_t)); 212 212 if (!skidev) 213 213 return NULL;
Note:
See TracChangeset
for help on using the changeset viewer.