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

staging: lustre: Fix typo in lustre/lustre/libcfs

Correct spelling typo in lustre/lustre/libcfs

Signed-off-by: Masanari Iida <standby24x7@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

authored by

Masanari Iida and committed by
Greg Kroah-Hartman
17afd17b 6e3dd654

+7 -7
+4 -4
drivers/staging/lustre/lustre/libcfs/hash.c
··· 51 51 * - move all stuff to libcfs 52 52 * - don't allow cur_bits != max_bits without setting of CFS_HASH_REHASH 53 53 * - ignore hs_rwlock if without CFS_HASH_REHASH setting 54 - * - buckets are allocated one by one(intead of contiguous memory), 54 + * - buckets are allocated one by one(instead of contiguous memory), 55 55 * to avoid unnecessary cacheline conflict 56 56 * 57 57 * 2010-03-01: Liang Zhen <zhen.liang@sun.com> 58 - * - "bucket" is a group of hlist_head now, user can speicify bucket size 58 + * - "bucket" is a group of hlist_head now, user can specify bucket size 59 59 * by bkt_bits of cfs_hash_create(), all hlist_heads in a bucket share 60 60 * one lock for reducing memory overhead. 61 61 * ··· 1386 1386 /* 1387 1387 * NB: it's race on cfs_has_t::hs_iterating, but doesn't matter 1388 1388 * because it's just an unreliable signal to rehash-thread, 1389 - * rehash-thread will try to finsih rehash ASAP when seeing this. 1389 + * rehash-thread will try to finish rehash ASAP when seeing this. 1390 1390 */ 1391 1391 hs->hs_iterating = 1; 1392 1392 ··· 1394 1394 hs->hs_iterators++; 1395 1395 1396 1396 /* NB: iteration is mostly called by service thread, 1397 - * we tend to cancel pending rehash-requst, instead of 1397 + * we tend to cancel pending rehash-request, instead of 1398 1398 * blocking service thread, we will relaunch rehash request 1399 1399 * after iteration */ 1400 1400 if (cfs_hash_is_rehashing(hs))
+2 -2
drivers/staging/lustre/lustre/libcfs/kernel_user_comm.c
··· 193 193 /* Broadcast groups are global across all mounted filesystems; 194 194 * i.e. registering for a group on 1 fs will get messages for that 195 195 * group from any fs */ 196 - /** A single group reigstration has a uid and a file pointer */ 196 + /** A single group registration has a uid and a file pointer */ 197 197 struct kkuc_reg { 198 198 struct list_head kr_chain; 199 199 int kr_uid; ··· 206 206 207 207 /** Add a receiver to a broadcast group 208 208 * @param filp pipe to write into 209 - * @param uid identidier for this receiver 209 + * @param uid identifier for this receiver 210 210 * @param group group number 211 211 */ 212 212 int libcfs_kkuc_group_add(struct file *filp, int uid, int group, __u32 data)
+1 -1
drivers/staging/lustre/lustre/libcfs/module.c
··· 380 380 381 381 rc = cfs_crypto_register(); 382 382 if (rc) { 383 - CERROR("cfs_crypto_regster: error %d\n", rc); 383 + CERROR("cfs_crypto_register: error %d\n", rc); 384 384 goto cleanup_wi; 385 385 } 386 386