···121121..............................................................................122122 File Content 123123 cmdline Command line arguments 124124- cpu Current and last cpu in wich it was executed (2.4)(smp)124124+ cpu Current and last cpu in which it was executed (2.4)(smp)125125 cwd Link to the current working directory126126 environ Values of environment variables 127127 exe Link to the executable of this process···309309 > cat /proc/irq/0/smp_affinity 310310 ffffffff311311312312-It's a bitmask, in wich you can specify wich CPUs can handle the IRQ, you can312312+It's a bitmask, in which you can specify which CPUs can handle the IRQ, you can313313set it by doing:314314315315 > echo 1 > /proc/irq/prof_cpu_mask316316317317This means that only the first CPU will handle the IRQ, but you can also echo 5318318-wich means that only the first and fourth CPU can handle the IRQ.318318+which means that only the first and fourth CPU can handle the IRQ.319319320320The way IRQs are routed is handled by the IO-APIC, and it's Round Robin321321between all the CPUs which are allowed to handle it. As usual the kernel has
+5-5
Documentation/networking/packet_mmap.txt
···4040+ How to use CONFIG_PACKET_MMAP4141--------------------------------------------------------------------------------42424343-From the user standpoint, you should use the higher level libpcap library, wich4343+From the user standpoint, you should use the higher level libpcap library, which4444is a de facto standard, portable across nearly all operating systems4545including Win32. 4646···217217218218kmalloc allocates any number of bytes of phisically contiguous memory from 219219a pool of pre-determined sizes. This pool of memory is mantained by the slab 220220-allocator wich is at the end the responsible for doing the allocation and 221221-hence wich imposes the maximum memory that kmalloc can allocate. 220220+allocator which is at the end the responsible for doing the allocation and 221221+hence which imposes the maximum memory that kmalloc can allocate. 222222223223In a 2.4/2.6 kernel and the i386 architecture, the limit is 131072 bytes. The 224224predetermined sizes that kmalloc uses can be checked in the "size-<bytes>" ···254254255255 <block number> * <block size> / <frame size>256256257257-Suposse the following parameters, wich apply for 2.6 kernel and an257257+Suposse the following parameters, which apply for 2.6 kernel and an258258i386 architecture:259259260260 <size-max> = 131072 bytes···360360 statistics where checked with getsockopt() and361361 the PACKET_STATISTICS option.362362363363-TP_STATUS_CSUMNOTREADY: currently it's used for outgoing IP packets wich 363363+TP_STATUS_CSUMNOTREADY: currently it's used for outgoing IP packets which 364364 it's checksum will be done in hardware. So while 365365 reading the packet we should not try to check the 366366 checksum.
+2-1
drivers/acpi/Kconfig
···256256 depends on ACPI_CUSTOM_DSDT257257 default ""258258 help259259- Enter the full path name to the file wich includes the AmlCode declaration.259259+ Enter the full path name to the file which includes the AmlCode260260+ declaration.260261261262config ACPI_BLACKLIST_YEAR262263 int "Disable ACPI for systems before Jan 1st this year" if X86_32
+1-1
drivers/isdn/i4l/isdn_x25iface.c
···77 *88 * stuff needed to support the Linux X.25 PLP code on top of devices that99 * can provide a lab_b service using the concap_proto mechanism.1010- * This module supports a network interface wich provides lapb_sematics1010+ * This module supports a network interface which provides lapb_sematics1111 * -- as defined in Documentation/networking/x25-iface.txt -- to1212 * the upper layer and assumes that the lower layer provides a reliable1313 * data link service by means of the concap_device_ops callbacks.
+1-1
drivers/serial/mpc52xx_uart.c
···4040 * and so on). So the PSC1 is mapped to /dev/ttyPSC0, PSC2 to /dev/ttyPSC1 and4141 * so on. But be warned, it's an ABSOLUTE REQUIREMENT ! This is needed mainly4242 * fpr the console code : without this 1:1 mapping, at early boot time, when we4343- * are parsing the kernel args console=ttyPSC?, we wouldn't know wich PSC it4343+ * are parsing the kernel args console=ttyPSC?, we wouldn't know which PSC it4444 * will be mapped to.4545 */4646
+1-1
drivers/usb/serial/option.c
···102102 .no_dynamic_id = 1,103103};104104105105-/* The card has three separate interfaces, wich the serial driver105105+/* The card has three separate interfaces, which the serial driver106106 * recognizes separately, thus num_port=1.107107 */108108static struct usb_serial_driver option_3port_device = {
+1-1
drivers/video/sstfb.c
···32323333-TODO: at one time or another test that the mode is acceptable by the monitor3434-ASK: Can I choose different ordering for the color bitfields (rgba argb ...)3535- wich one should i use ? is there any preferred one ? It seems ARGB is3535+ which one should i use ? is there any preferred one ? It seems ARGB is3636 the one ...3737-TODO: in set_var check the validity of timings (hsync vsync)...3838-TODO: check and recheck the use of sst_wait_idle : we don't flush the fifo via
+1-1
drivers/w1/masters/matrox_w1.c
···9898 *9999 * Using tristate pins, since i can't find any open-drain pin in whole motherboard.100100 * Unfortunately we can't connect to Intel's 82801xx IO controller101101- * since we don't know motherboard schema, wich has pretty unused(may be not) GPIO.101101+ * since we don't know motherboard schema, which has pretty unused(may be not) GPIO.102102 *103103 * I've heard that PIIX also has open drain pin.104104 *
+1-1
fs/befs/datastream.c
···118118 * befs_read_lsmylink - read long symlink from datastream.119119 * @sb: Filesystem superblock 120120 * @ds: Datastrem to read from121121- * @buf: Buffer in wich to place long symlink data121121+ * @buf: Buffer in which to place long symlink data122122 * @len: Length of the long symlink in bytes123123 *124124 * Returns the number of bytes read
+1-1
scripts/Makefile.modpost
···44#55# Stage one of module building created the following:66# a) The individual .o files used for the module77-# b) A <module>.o file wich is the .o files above linked together77+# b) A <module>.o file which is the .o files above linked together88# c) A <module>.mod file in $(MODVERDIR)/, listing the name of the99# the preliminary <module>.o file, plus all .o files1010