aboutsummaryrefslogtreecommitdiffstats
path: root/kernel
diff options
context:
space:
mode:
authorMiklos Szeredi <miklos@szeredi.hu>2005-10-11 10:12:08 +0000
committerMiklos Szeredi <miklos@szeredi.hu>2005-10-11 10:12:08 +0000
commitb75d4b9bc09ff071b2dfcdf632a7382733e7fa8b (patch)
tree9db2134cbeec178da7684fe67136d06992798e0f /kernel
parent7f54fb491cd1250fdb0f9c7d1acb2a1408c2030c (diff)
downloadlibfuse-b75d4b9bc09ff071b2dfcdf632a7382733e7fa8b.tar.gz
spelling fix
Diffstat (limited to 'kernel')
-rw-r--r--kernel/dev.c6
-rw-r--r--kernel/fuse_i.h12
2 files changed, 9 insertions, 9 deletions
diff --git a/kernel/dev.c b/kernel/dev.c
index 0f4de86..4df10f4 100644
--- a/kernel/dev.c
+++ b/kernel/dev.c
@@ -191,9 +191,9 @@ void fuse_release_background(struct fuse_req *req)
/*
* This function is called when a request is finished. Either a reply
* has arrived or it was interrupted (and not yet sent) or some error
- * occured during communication with userspace, or the device file was
- * closed. It decreases the referece count for the request. In case
- * of a background request the referece to the stored objects are
+ * occurred during communication with userspace, or the device file was
+ * closed. It decreases the reference count for the request. In case
+ * of a background request the reference to the stored objects are
* released. The requester thread is woken up (if still waiting), and
* finally the request is either freed or put on the unused_list
*
diff --git a/kernel/fuse_i.h b/kernel/fuse_i.h
index f5afa01..b8270ce 100644
--- a/kernel/fuse_i.h
+++ b/kernel/fuse_i.h
@@ -429,22 +429,22 @@ int fuse_fsync_common(struct file *file, struct dentry *de, int datasync,
int isdir);
/**
- * Initialise file operations on a regular file
+ * Initialize file operations on a regular file
*/
void fuse_init_file_inode(struct inode *inode);
/**
- * Initialise inode operations on regular files and special files
+ * Initialize inode operations on regular files and special files
*/
void fuse_init_common(struct inode *inode);
/**
- * Initialise inode and file operations on a directory
+ * Initialize inode and file operations on a directory
*/
void fuse_init_dir(struct inode *inode);
/**
- * Initialise inode operations on a symlink
+ * Initialize inode operations on a symlink
*/
void fuse_init_symlink(struct inode *inode);
@@ -491,7 +491,7 @@ struct fuse_req *fuse_get_request(struct fuse_conn *fc);
/**
* Decrement reference count of a request. If count goes to zero put
- * on unused list (preallocated) or free reqest (not preallocated).
+ * on unused list (preallocated) or free request (not preallocated).
*/
void fuse_put_request(struct fuse_conn *fc, struct fuse_req *req);
@@ -511,7 +511,7 @@ void request_send_noreply(struct fuse_conn *fc, struct fuse_req *req);
void request_send_background(struct fuse_conn *fc, struct fuse_req *req);
/**
- * Release inodes and file assiciated with background request
+ * Release inodes and file associated with background request
*/
void fuse_release_background(struct fuse_req *req);