summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* 2005-05-21 Ralf Corsepius <ralf.corsepius@rtems.org>Ralf Corsepius2005-05-211-0/+2
| | | | | * libnetworking/netinet/ip_icmp.c: Partial update from FreeBSD. * libnetworking/sys/mbuf.h: Partial update from FreeBSD.
* Partial update from FreeBSD.Ralf Corsepius2005-05-212-57/+45
|
* 2005-05-21 Ralf Corsepius <ralf.corsepius@rtems.org>Ralf Corsepius2005-05-212-31/+47
| | | | | * libnetworking/netinet/ip_icmp.h: Update from FreeBSD. Abandon BYTE_PACK.
* 2005-05-21 Ralf Corsepius <ralf.corsepius@rtems.org>Ralf Corsepius2005-05-211-0/+4
| | | | * libnetworking/netdb.h: Update from FreeBSD.
* Update from FreeBSD.Ralf Corsepius2005-05-211-46/+56
|
* 2005-05-20 Sergei Organov <osv@javad.ru>Joel Sherrill2005-05-202-1/+7
| | | | | | PR networking/772. * libnetworking/rtems/rtems_select.c (socket_select): fixed bug setting SB_WAIT flag of so_rcv instead of so_snd when FWRITE.
* 2005-05-20 Sergei Organov <osv@topconrd.ru>Joel Sherrill2005-05-203-8/+30
| | | | | | PR 750/networking * libnetworking/pppd/sys-rtems.c: Avoid NULL dereference in wait_input().
* 2005-05-20 Chris Johns <chrisj@rtems.org>Joel Sherrill2005-05-203-2/+6
| | | | * rtems/score/cpu.h, rtems/score/m68k.h: Change declaration of _VBR.
* Added PR775.Joel Sherrill2005-05-201-0/+1
|
* 2005-05-20 Jennifer Averett <jennifer@OARcorp.com>Joel Sherrill2005-05-202-5/+43
| | | | | | PR 702/bsps * include/tm27.h: Add better tm27.h support. Uses decrementer register interrupt -- copied from psim.
* 2005-05-20 Sergei Organov <osv@topconrd.ru>Joel Sherrill2005-05-202-1/+6
| | | | | PR 749/networking * libnetworking/rtems/rtems_showroute.c: Avoid NULL dereference.
* 2005-05-14 Sergei Organov <osv@topconrd.ru>Joel Sherrill2005-05-2020-91/+642
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PR 746/rtems Optimize realloc(). The problem is that realloc() can neither grow nor shrink efficiently the current memory region without support from underlying heap/region modules. The patch introduces one new routine for each of heap and region modules, _Heap_Resize_block(), and rtems_region_resize_segment(), respectively, and uses the latter to optimize realloc(). The implementation of _Heap_Resize_block() lead to changing of the heap allocation strategy: now the heap manager, when splits larger free block into used and new free parts, makes the first part of the block used, not the last one as it was before. Due to this new strategy, _Heap_Resize_block() never needs to change the user pointer. Caveat: unlike previous heap implementation, first few bytes of the contents of the memory allocated from the heap are now almost never all zero. This can trigger bugs in client code that have not been visible before this patch. * libcsupport/src/malloc.c (realloc): try to resize segment in place using new rtems_region_resize_segment() routine before falling back to the malloc()/free() method. * score/src/heap.c: (_Heap_Initialize): change initial heap layout to reflect new allocation strategy of using of the lower part of a previously free block when splitting it for the purpose of allocation. (_Heap_Block_allocate): when split, make the lower part used, and leave the upper part free. Return type changed from Heap_Block* to uint32_t. * score/include/rtems/score/heap.h: (Heap_Statistics): added 'resizes' field. (Heap_Resize_status): new enum. (_Heap_Resize_block): new routine. (_Heap_Block_allocate): return type changed from Heap_Block* to uint32_t. * score/src/heapwalk.c: reflect new heap layout in checks. * score/src/heapsizeofuserarea.c: more assertions added. * score/src/heapresizeblock.c: new file. (_Heap_Resize_block): new routine. * score/src/heapfree.c: reverse the checks _Heap_Is_block_in() and _Heap_Is_prev_used() on entry to be in this order. * score/src/heapallocate.c, score/src/heapallocatealigned.c: ignore return value of _Heap_Block_allocate(). * score/Makefile.am (HEAP_C_FILES): added src/heapresizeblock.c. * rtems/include/rtems/rtems/region.h: (rtems_region_resize_segment): new interface routine. (_Region_Process_queue): new internal routine called from rtems_region_resize_segment() and rtems_region_return_segment(). * rtems/src/regionreturnsegment.c: move queue management code into the new internal routine _Region_Process_queue() and call it. * rtems/src/regionresizesegment.c: new file. (rtems_region_resize_segment): new interface routine. * rtems/src/regionprocessqueue.c: new file. (_Region_Process_queue): new internal routine containing queue management code factored out from 'regionreturnsegment.c'. * rtems/Makefile.am (REGION_C_FILES): Added src/regionresizesegment.c, and src/regionprocessqueue.c. * ada/rtems.adb, ada/rtems.ads: Added Region_Resize_Segment.
* 2005-05-20 Joel Sherrill <joel@OARcorp.com>Joel Sherrill2005-05-202-1/+5
| | | | * console/duart.c: Remove warning.
* 2005-05-20 Eric Norum <norume@aps.anl.gov>Joel Sherrill2005-05-202-3/+10
| | | | | | PR 793/networking * libnetworking/netinet/ip_icmp.c: Malicious ICMP packet causes panic. Just ignore it.
* 2005-05-20 Ralf Corsepius <ralf.corsepius@rtems.org>Ralf Corsepius2005-05-201-0/+5
| | | | | * Makefile.am: Add SHGEN. * startup/linkcmds: Add missing sections.
* Add missing sections.Ralf Corsepius2005-05-201-2/+5
|
* Add SHGEN.Ralf Corsepius2005-05-201-0/+2
|
* Correct PATCH<N> handling.Ralf Corsepius2005-05-201-3/+3
|
* Remove bogus commentRalf Corsepius2005-05-201-10/+0
|
* 2005-05-20 Ralf Corsepius <ralf.corsepius@rtems.org>Ralf Corsepius2005-05-201-0/+7
| | | | | | | * binutils/base-binutils.add, gccnewlib/base-g77.add, gccnewlib/base-gcc.add, gccnewlib/base-gcj.add, gccnewlib/base-gfortran.add, gccnewlib/base-gnat.add, gdb/base-gdb.add: install-info --info-dir=.
* install-info --info-dir=Ralf Corsepius2005-05-207-50/+50
|
* 2005-05-18 Ralf Corsepius <ralf.corsepius@rtems.org>Ralf Corsepius2005-05-181-0/+7
| | | | | | | * gccnewlib/mkspec.in: Correct patch handling magic. * gccnewlib/gccnewlib.add: Reflect changes to mkspec.in. Use --with/--without, rework logic for building optional languages. * gccnewlib/header.add: Document --with/--without.
* Document --with/--without.Ralf Corsepius2005-05-181-1/+11
|
* Reflect changes to mkspec.in.Ralf Corsepius2005-05-181-37/+55
| | | | Use --with/--without, rework logic for building optional languages.
* Correct patch handling magic.Ralf Corsepius2005-05-181-5/+2
|
* 2005-05-18 Chris Johns <chrisj@rtems.org>Chris Johns2005-05-182-4/+13
| | | | | * libmisc/capture/capture-cli.c: Fix the output of ctload when there exists a large number of tasks.
* 2005-05-17 Jennifer Averett <jennifer.averett@oarcorp.com>Jennifer Averett2005-05-173-2/+7
| | | | | * ChangeLog, libchip/network/if_fxp.c, libchip/serial/ns16550.c: Modified to use rtems/irq.h.
* 2005-05-17 Jennifer Averett <jennifer.averett@oarcorp.com>Jennifer Averett2005-05-174-277/+88
| | | | | | * mpc5xx/irq/irq.c, mpc5xx/irq/irq.h, mpc8xx/console-generic/console-generic.c: Modified to use rtems/irq.h.
* 2005-05-17 Jennifer Averett <jennifer.averett@oarcorp.com>Jennifer Averett2005-05-174-148/+147
| | | | | | * at91rm9200/irq/irq.h, mc9328mxl/irq/irq.h, s3c2400/irq/irq.h: Modified names and types to match rtems/irq.h. Note: rtems/irq.h should be included after the addition of a parameter to ISRs.
* 2005-05-17 Jennifer Averett <jennifer.averett@oarcorp.com>Jennifer Averett2005-05-175-244/+89
| | | | | * clock/p_clock.c, irq/i8259.c, irq/irq.c, irq/irq.h: Modified to use rtems/irq.h.
* 2005-05-17 Jennifer Averett <jennifer.averett@oarcorp.com>Jennifer Averett2005-05-179-730/+148
| | | | * irq/irq.c, irq/irq.h: Modified to use rtems/irq.h.
* 2005-05-17 Jennifer Averett <jennifer.averett@oarcorp.com>Jennifer Averett2005-05-174-246/+69
| | | | * irq/GT64260Int.c, irq/irq.c, irq/irq.h: Modified to use rtems/irq.h.
* 2005-05-17 Jennifer Averett <jennifer.averett@oarcorp.com>Jennifer Averett2005-05-174-236/+85
| | | | * irq/irq.c, irq/irq.h, network/network.c: Modified to use rtems/irq.h.
* 2005-05-17 Jennifer Averett <jennifer.averett@oarcorp.com>Jennifer Averett2005-05-173-7/+11
| | | | * console/rsPMCQ1.c, irq/irq.c: Modified to use rtems/irq.h.
* 2005-05-17 Jennifer Averett <jennifer.averett@oarcorp.com>Jennifer Averett2005-05-172-178/+20
| | | | * irq/irq.c, irq/irq.h: Modified to include rtems/irq.h.
* 2005-05-17 Jennifer Averett <jennifer.averett@oarcorp.com>Jennifer Averett2005-05-171-1/+0
| | | | | * Makefile.am, preinstall.am: Added a common irq.h * include/rtems/irq.h: New file.
* 2005-05-17 Jennifer Averett <jennifer.averett@oarcorp.com>Jennifer Averett2005-05-171-0/+6
| | | | | * Makefile.am, preinstall.am: Added a common irq.h * include/rtems/irq.h: New file.
* 2005-05-17 Jennifer Averett <jennifer.averett@oarcorp.com>Jennifer Averett2005-05-172-28/+33
| | | | | | * irq/irq.h: Modified names and types to match rtems/irq.h. Note: rtems/irq.h should be included after the addition of a parameter to ISRs.
* 2005-05-17 Jennifer Averett <jennifer.averett@oarcorp.com>Jennifer Averett2005-05-173-0/+225
| | | | | * Makefile.am, preinstall.am: Added a common irq.h * include/rtems/irq.h: New file.
* 2005-05-14 Ralf Corsepius <ralf.corsepius@rtems.org>Ralf Corsepius2005-05-143-50/+33
| | | | | * libnetworking/netinet/tcp_usrreq.c: Cosmetics from FreeBSD. * libnetworking/netinet/tcp_subr.c: Partical update from FreeBSD.
* 2005-05-12 Jennifer Averett <jennifer.averett@oarcorp.com>Jennifer Averett2005-05-1211-496/+450
| | | | | | | | * README.VME, include/bsp.h, irq/irq.h, network/GT64260eth.c, pci/detect_host_bridge.c, pci/gtpcireg.h, pci/pci.c, pci/pci.h, pci/pci_interface.c, pci/pcifinddevice.c: Submitted by Kate Feng <feng1@bnl.gov> as RTEMS-MVME5500 BSP v1.1 release. Modifications made to merge this release with the current tree.
* 2005-05-12 Ralf Corsepius <ralf.corsepius@rtems.org>Ralf Corsepius2005-05-122-2/+3
| | | | * configure.ac: Let --enable-deprecated default to "no".
* 2005-05-12 Ralf Corsepius <ralf.corsepius@rtems.org>Ralf Corsepius2005-05-121-0/+3
| | | | | | * libnetworking/net/if_arp.h: Remove BYTE_PACK. * libnetworking/net/if_llc.h: Update from FreeBSD, add __packed. * libnetworking/net/route.h: Partial update from FreeBSD.
* Partial update from FreeBSD.Ralf Corsepius2005-05-121-17/+14
|
* Update from FreeBSD, add __packed.Ralf Corsepius2005-05-121-42/+63
|
* Remove BYTE_PACK.Ralf Corsepius2005-05-121-9/+9
|
* 2005-05-12 Ralf Corsepius <ralf.corsepius@rtems.org>Ralf Corsepius2005-05-122-32/+45
| | | | * libnetworking/netinet/if_ether.c: Partial update from FreeBSD.
* 2005-05-12 Ralf Corsepius <ralf.corsepius@rtems.org>Ralf Corsepius2005-05-123-76/+93
| | | | | * libnetworking/netinet/tcp_var.h: Partial update from FreeBSD. * libnetworking/netinet/tcp_input.c: Reflect changes to tcp_var.h.
* 2005-05-12 Ralf Corsepius <ralf.corsepius@rtems.org>Ralf Corsepius2005-05-122-20/+33
| | | | | * libnetworking/netinet/tcp.h: Partial update from FreeBSD. Remove BYTE_PACK.
* 2005-05-12 Ralf Corsepius <ralf.corsepius@rtems.org>Ralf Corsepius2005-05-122-28/+34
| | | | | * libnetworking/netinet/ip_var.h: Partial update from FreeBSD. Remove some useless BYTE_PACKs.