Lines Matching +full:high +full:- +full:performance
30 Performance Improvements
41 Performance Improvements in the Kernel
43 Our goal has been to optimize system performance
62 translating path names to inodes\u\s-21\s0\d\**.
64 \** \u\s-21\s0\d Inode is an abbreviation for ``Index node''.
78 To improve performance for processes doing directory scans,
101 cache we ran ``ls \-l''
103 Before the per-process cache this command
129 Table 9. Call times for \fInamei\fP with per-process cache.
133 The small performance improvement
161 maintained a simple name-inode association that was used to
194 by a \fIcapability\fP \- a 32-bit number
195 guaranteed to be unique\u\s-22\s0\d \**.
197 \** \u\s-22\s0\d When all the numbers have been exhausted, all outstanding
220 using 10-50 kilobytes of physical memory.
223 After adding the system wide name cache we reran ``ls \-l''
259 Statistics on the performance of both caches show that
260 the large performance improvement is
261 caused by the high hit ratio.
262 The name cache has a hit rate of 70%-80%;
263 the directory offset cache gets a hit rate of 5%-15%.
301 per-character interrupts.
320 The software-interrupt level portion of the clock routine is only
332 The kernel process table is now multi-threaded to allow selective searching
381 at high priority.
382 As most of the clock-based events need not be done at high priority,
384 time-critical events such as cpu scheduling and timeout processing.
387 The high priority event now checks to see if there are low priority
390 Often, the high priority interrupt occurs during a period when the
404 To minimize the number of full-sized blocks that must be broken
424 a directory that is once over-filled will increase the cost
425 of file creation even after the over-filling is corrected.
443 and interface in use; non-local connections use a more conservative size
444 for long-haul networks.
446 On multiply-homed hosts, the local address bound by TCP now always corresponds
469 Performance deteriorates because of load in
478 When \fIexec\fP-ing a new process, the kernel creates the new
507 context in preparation for a non-local goto used to save many more
537 if (scanc(map[i], 1, 47, i - 63))
555 subl3 $64,_i,\-(sp) subl3 $64,_i,\-(sp) subl3 $64,_i,r5
559 pushl \-56(fp)[r3] pushl \-56(fp)[r3] movl \-56(fp)[r3],r2
610 the C-shell (in doing tilde expansion), \fIls \-l\fP, etc.
615 performance, but it is possible to degrade system performance
617 appropriately-sized buffers.
620 Some C library routines and commonly-used programs use low-level
632 The inordinate expense of sending single-byte packets through
686 efficient because it is all done with in-memory tables.
723 inordinately high.
733 and inline expansions of the ubiquitous byte-swapping functions.
744 The C Run-time Library
752 Certain library routines that did file input in one-character reads
759 The C-shell was converted to run on 4.2BSD by
761 While this provided a functioning C-shell,
764 The C-shell has been modified to use the new signal