Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

fix "seperate" typos in comments

s/seperate/separate

Signed-off-by: Anand Gadiyar <gadiyar@ti.com>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>

authored by

Anand Gadiyar and committed by
Jiri Kosina
a8cd4561 7d7fb0e6

+14 -14
+4 -4
Documentation/filesystems/logfs.txt
··· 59 59 ------ 60 60 61 61 Garbage collection (GC) may fail if all data is written 62 - indiscriminately. One requirement of GC is that data is seperated 62 + indiscriminately. One requirement of GC is that data is separated 63 63 roughly according to the distance between the tree root and the data. 64 64 Effectively that means all file data is on level 0, indirect blocks 65 65 are on levels 1, 2, 3 4 or 5 for 1x, 2x, 3x, 4x or 5x indirect blocks, ··· 67 67 for indirect blocks. 68 68 69 69 Each segment contains objects of a single level only. As a result, 70 - each level requires its own seperate segment to be open for writing. 70 + each level requires its own separate segment to be open for writing. 71 71 72 72 Inode File 73 73 ---------- ··· 106 106 --- 107 107 108 108 By cleverly predicting the life time of data, it is possible to 109 - seperate long-living data from short-living data and thereby reduce 109 + separate long-living data from short-living data and thereby reduce 110 110 the GC overhead later. Each type of distinc life expectency (vim) can 111 - have a seperate segment open for writing. Each (level, vim) tupel can 111 + have a separate segment open for writing. Each (level, vim) tupel can 112 112 be open just once. If an open segment with unknown vim is encountered 113 113 at mount time, it is closed and ignored henceforth. 114 114
+1 -1
arch/arm/mach-s3c2443/clock.c
··· 391 391 392 392 /* i2s_eplldiv 393 393 * 394 - * This clock is the output from the I2S divisor of ESYSCLK, and is seperate 394 + * This clock is the output from the I2S divisor of ESYSCLK, and is separate 395 395 * from the mux that comes after it (cannot merge into one single clock) 396 396 */ 397 397
+1 -1
arch/arm/plat-samsung/include/plat/gpio-core.h
··· 97 97 * others = Special functions (dependant on bank) 98 98 * 99 99 * Note, since the code to deal with the case where there are two control 100 - * registers instead of one, we do not have a seperate set of function 100 + * registers instead of one, we do not have a separate set of function 101 101 * (samsung_gpiolib_add_4bit2_chips)for each case. 102 102 */ 103 103 extern void samsung_gpiolib_add_4bit_chips(struct s3c_gpio_chip *chip,
+1 -1
drivers/usb/host/ehci-omap.c
··· 181 181 void __iomem *ehci_base; 182 182 183 183 /* Regulators for USB PHYs. 184 - * Each PHY can have a seperate regulator. 184 + * Each PHY can have a separate regulator. 185 185 */ 186 186 struct regulator *regulator[OMAP3_HS_USB_PORTS]; 187 187 };
+1 -1
fs/logfs/dir.c
··· 12 12 * Atomic dir operations 13 13 * 14 14 * Directory operations are by default not atomic. Dentries and Inodes are 15 - * created/removed/altered in seperate operations. Therefore we need to do 15 + * created/removed/altered in separate operations. Therefore we need to do 16 16 * a small amount of journaling. 17 17 * 18 18 * Create, link, mkdir, mknod and symlink all share the same function to do
+1 -1
fs/logfs/logfs.h
··· 704 704 u8 level = (__force u8)__level; 705 705 706 706 if (ino == LOGFS_INO_MASTER) { 707 - /* ifile has seperate areas */ 707 + /* ifile has separate areas */ 708 708 level += LOGFS_MAX_LEVELS; 709 709 } 710 710 return (__force gc_level_t)level;
+5 -5
fs/logfs/logfs_abi.h
··· 50 50 * 12 - gc recycled blocks, long-lived data 51 51 * 13 - replacement blocks, short-lived data 52 52 * 53 - * Levels 1-11 are necessary for robust gc operations and help seperate 53 + * Levels 1-11 are necessary for robust gc operations and help separate 54 54 * short-lived metadata from longer-lived file data. In the future, 55 - * file data should get seperated into several segments based on simple 55 + * file data should get separated into several segments based on simple 56 56 * heuristics. Old data recycled during gc operation is expected to be 57 57 * long-lived. New data is of uncertain life expectancy. New data 58 58 * used to replace older blocks in existing files is expected to be ··· 117 117 #define pure_ofs(ofs) (ofs & ~LOGFS_FULLY_POPULATED) 118 118 119 119 /* 120 - * LogFS needs to seperate data into levels. Each level is defined as the 120 + * LogFS needs to separate data into levels. Each level is defined as the 121 121 * maximal possible distance from the master inode (inode of the inode file). 122 122 * Data blocks reside on level 0, 1x indirect block on level 1, etc. 123 123 * Inodes reside on level 6, indirect blocks for the inode file on levels 7-11. ··· 204 204 * @ds_crc: crc32 of structure starting with the next field 205 205 * @ds_ifile_levels: maximum number of levels for ifile 206 206 * @ds_iblock_levels: maximum number of levels for regular files 207 - * @ds_data_levels: number of seperate levels for data 207 + * @ds_data_levels: number of separate levels for data 208 208 * @pad0: reserved, must be 0 209 209 * @ds_feature_incompat: incompatible filesystem features 210 210 * @ds_feature_ro_compat: read-only compatible filesystem features ··· 456 456 * @vim: life expectancy of data 457 457 * 458 458 * "Areas" are segments currently being used for writing. There is at least 459 - * one area per GC level. Several may be used to seperate long-living from 459 + * one area per GC level. Several may be used to separate long-living from 460 460 * short-living data. If an area with unknown vim is encountered, it can 461 461 * simply be closed. 462 462 * The write buffer immediately follow this header.