Changeset 436a0a5 in mainline for kernel/genarch/src
- Timestamp:
- 2018-11-09T22:04:01Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 95d45482
- Parents:
- 88e43bc (diff), abf6c01 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)links above to see all the changes relative to each parent. - Location:
- kernel/genarch/src
- Files:
-
- 2 edited
-
mm/asid_fifo.c (modified) (1 diff)
-
ofw/ofw_tree.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
kernel/genarch/src/mm/asid_fifo.c
r88e43bc r436a0a5 65 65 #if (!FIFO_STATIC) 66 66 fifo_create(free_asids); 67 if (!free_asids.fifo) 68 panic("Not enough memory to allocate ASID FIFO"); 69 // TODO: There really is no reason not to statically allocate it 70 // except to keep binary size low. Once kernel is a regular ELF 71 // binary supporting .bss section (wip as of the late 2018), 72 // the dynamic option should be removed. 67 73 #endif 68 74 -
kernel/genarch/src/ofw/ofw_tree.c
r88e43bc r436a0a5 386 386 static void ofw_tree_node_sysinfo(ofw_tree_node_t *node, const char *path) 387 387 { 388 char *cur_path = (char *) nfmalloc(PATH_MAX_LEN); 388 char *cur_path = malloc(PATH_MAX_LEN); 389 if (!cur_path) 390 panic("Not enough memory to process OFW tree."); 389 391 390 392 for (ofw_tree_node_t *cur = node; cur; cur = cur->peer) {
Note:
See TracChangeset
for help on using the changeset viewer.
