Fix typos in doc and comments
Changes persistant -> persistent. www.dictionary.com does not know persistant (with an A), but should it be one of those things you can spell in more than one correct way, let me know. Signed-off-by: Jan Engelhardt <jengelh@gmx.de> Signed-off-by: Adrian Bunk <bunk@stusta.de>
This commit is contained in:
parent
93e06b4140
commit
03a67a46af
|
@ -201,7 +201,7 @@ udev
|
||||||
----
|
----
|
||||||
udev is a userspace application for populating /dev dynamically with
|
udev is a userspace application for populating /dev dynamically with
|
||||||
only entries for devices actually present. udev replaces the basic
|
only entries for devices actually present. udev replaces the basic
|
||||||
functionality of devfs, while allowing persistant device naming for
|
functionality of devfs, while allowing persistent device naming for
|
||||||
devices.
|
devices.
|
||||||
|
|
||||||
FUSE
|
FUSE
|
||||||
|
|
|
@ -62,7 +62,7 @@ setup via another operating system for it to use. Despite the
|
||||||
inconvenience, this method requires minimal work by the kernel, since
|
inconvenience, this method requires minimal work by the kernel, since
|
||||||
the firmware will also handle restoring memory contents on resume.
|
the firmware will also handle restoring memory contents on resume.
|
||||||
|
|
||||||
If the kernel is responsible for persistantly saving state, a mechanism
|
If the kernel is responsible for persistently saving state, a mechanism
|
||||||
called 'swsusp' (Swap Suspend) is used to write memory contents to
|
called 'swsusp' (Swap Suspend) is used to write memory contents to
|
||||||
free swap space. swsusp has some restrictive requirements, but should
|
free swap space. swsusp has some restrictive requirements, but should
|
||||||
work in most cases. Some, albeit outdated, documentation can be found
|
work in most cases. Some, albeit outdated, documentation can be found
|
||||||
|
|
|
@ -120,7 +120,7 @@ static int winch_thread(void *arg)
|
||||||
/* These are synchronization calls between various UML threads on the
|
/* These are synchronization calls between various UML threads on the
|
||||||
* host - since they are not different kernel threads, we cannot use
|
* host - since they are not different kernel threads, we cannot use
|
||||||
* kernel semaphores. We don't use SysV semaphores because they are
|
* kernel semaphores. We don't use SysV semaphores because they are
|
||||||
* persistant. */
|
* persistent. */
|
||||||
count = os_read_file(pipe_fd, &c, sizeof(c));
|
count = os_read_file(pipe_fd, &c, sizeof(c));
|
||||||
if(count != sizeof(c))
|
if(count != sizeof(c))
|
||||||
printk("winch_thread : failed to read synchronization byte, "
|
printk("winch_thread : failed to read synchronization byte, "
|
||||||
|
|
|
@ -6185,7 +6185,7 @@ mpt_spi_log_info(MPT_ADAPTER *ioc, u32 log_info)
|
||||||
"Abort", /* 12h */
|
"Abort", /* 12h */
|
||||||
"IO Not Yet Executed", /* 13h */
|
"IO Not Yet Executed", /* 13h */
|
||||||
"IO Executed", /* 14h */
|
"IO Executed", /* 14h */
|
||||||
"Persistant Reservation Out Not Affiliation Owner", /* 15h */
|
"Persistent Reservation Out Not Affiliation Owner", /* 15h */
|
||||||
"Open Transmit DMA Abort", /* 16h */
|
"Open Transmit DMA Abort", /* 16h */
|
||||||
"IO Device Missing Delay Retry", /* 17h */
|
"IO Device Missing Delay Retry", /* 17h */
|
||||||
NULL, /* 18h */
|
NULL, /* 18h */
|
||||||
|
|
|
@ -80,7 +80,7 @@ struct mtd_partition flagadm_parts[] = {
|
||||||
.size = FLASH_PARTITION2_SIZE
|
.size = FLASH_PARTITION2_SIZE
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
.name = "Persistant storage",
|
.name = "Persistent storage",
|
||||||
.offset = FLASH_PARTITION3_ADDR,
|
.offset = FLASH_PARTITION3_ADDR,
|
||||||
.size = FLASH_PARTITION3_SIZE
|
.size = FLASH_PARTITION3_SIZE
|
||||||
}
|
}
|
||||||
|
|
|
@ -34,7 +34,7 @@ config PCI_MULTITHREAD_PROBE
|
||||||
|
|
||||||
It is very unwise to use this option if you are not using a
|
It is very unwise to use this option if you are not using a
|
||||||
boot process that can handle devices being created in any
|
boot process that can handle devices being created in any
|
||||||
order. A program that can create persistant block and network
|
order. A program that can create persistent block and network
|
||||||
device names (like udev) is a good idea if you wish to use
|
device names (like udev) is a good idea if you wish to use
|
||||||
this option.
|
this option.
|
||||||
|
|
||||||
|
|
|
@ -972,7 +972,7 @@ config SYSFS
|
||||||
|
|
||||||
Some system agents rely on the information in sysfs to operate.
|
Some system agents rely on the information in sysfs to operate.
|
||||||
/sbin/hotplug uses device and object attributes in sysfs to assist in
|
/sbin/hotplug uses device and object attributes in sysfs to assist in
|
||||||
delegating policy decisions, like persistantly naming devices.
|
delegating policy decisions, like persistently naming devices.
|
||||||
|
|
||||||
sysfs is currently used by the block subsystem to mount the root
|
sysfs is currently used by the block subsystem to mount the root
|
||||||
partition. If sysfs is disabled you must specify the boot device on
|
partition. If sysfs is disabled you must specify the boot device on
|
||||||
|
|
|
@ -81,7 +81,7 @@
|
||||||
#define JFS_SWAP_BYTES 0x00100000 /* running on big endian computer */
|
#define JFS_SWAP_BYTES 0x00100000 /* running on big endian computer */
|
||||||
|
|
||||||
/* Directory index */
|
/* Directory index */
|
||||||
#define JFS_DIR_INDEX 0x00200000 /* Persistant index for */
|
#define JFS_DIR_INDEX 0x00200000 /* Persistent index for */
|
||||||
/* directory entries */
|
/* directory entries */
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -20,7 +20,7 @@ struct ts_config;
|
||||||
/**
|
/**
|
||||||
* struct ts_state - search state
|
* struct ts_state - search state
|
||||||
* @offset: offset for next match
|
* @offset: offset for next match
|
||||||
* @cb: control buffer, for persistant variables of get_next_block()
|
* @cb: control buffer, for persistent variables of get_next_block()
|
||||||
*/
|
*/
|
||||||
struct ts_state
|
struct ts_state
|
||||||
{
|
{
|
||||||
|
@ -71,7 +71,7 @@ struct ts_config
|
||||||
* Called repeatedly until 0 is returned. Must assign the
|
* Called repeatedly until 0 is returned. Must assign the
|
||||||
* head of the next block of data to &*dst and return the length
|
* head of the next block of data to &*dst and return the length
|
||||||
* of the block or 0 if at the end. consumed == 0 indicates
|
* of the block or 0 if at the end. consumed == 0 indicates
|
||||||
* a new search. May store/read persistant values in state->cb.
|
* a new search. May store/read persistent values in state->cb.
|
||||||
*/
|
*/
|
||||||
unsigned int (*get_next_block)(unsigned int consumed,
|
unsigned int (*get_next_block)(unsigned int consumed,
|
||||||
const u8 **dst,
|
const u8 **dst,
|
||||||
|
|
|
@ -40,7 +40,7 @@
|
||||||
* configuration according to the specified parameters.
|
* configuration according to the specified parameters.
|
||||||
* (3) User starts the search(es) by calling _find() or _next() to
|
* (3) User starts the search(es) by calling _find() or _next() to
|
||||||
* fetch subsequent occurrences. A state variable is provided
|
* fetch subsequent occurrences. A state variable is provided
|
||||||
* to the algorihtm to store persistant variables.
|
* to the algorihtm to store persistent variables.
|
||||||
* (4) Core eventually resets the search offset and forwards the find()
|
* (4) Core eventually resets the search offset and forwards the find()
|
||||||
* request to the algorithm.
|
* request to the algorithm.
|
||||||
* (5) Algorithm calls get_next_block() provided by the user continously
|
* (5) Algorithm calls get_next_block() provided by the user continously
|
||||||
|
|
Loading…
Reference in New Issue