summaryrefslogtreecommitdiffstats
path: root/xlators/storage/posix/src
diff options
context:
space:
mode:
authorVarun Shastry <vshastry@redhat.com>2012-09-25 20:25:08 +0530
committerVijay Bellur <vbellur@redhat.com>2012-09-27 11:20:20 -0700
commit1ee65fe16f427c48d55856879f125d8e218a5823 (patch)
tree694c0e7511db29934159f9bfc3c8203e29b5bc9e /xlators/storage/posix/src
parent2c04db460276c9de666d7ddaffc031492a7de867 (diff)
Fixed some general typing errors.
Eg: changed recieved to received Change-Id: I360fcb99c97c8a0222e373fee20ea2fccfb938db BUG: 860543 Signed-off-by: Varun Shastry <vshastry@redhat.com> Reviewed-on: http://review.gluster.org/3998 Tested-by: Gluster Build System <jenkins@build.gluster.com> Reviewed-by: Jeff Darcy <jdarcy@redhat.com> Reviewed-by: Vijay Bellur <vbellur@redhat.com>
Diffstat (limited to 'xlators/storage/posix/src')
-rw-r--r--xlators/storage/posix/src/posix-aio.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/xlators/storage/posix/src/posix-aio.c b/xlators/storage/posix/src/posix-aio.c
index b4dd0278..c520f44f 100644
--- a/xlators/storage/posix/src/posix-aio.c
+++ b/xlators/storage/posix/src/posix-aio.c
@@ -421,7 +421,7 @@ posix_aio_init (xlator_t *this)
ret = io_setup (POSIX_AIO_MAX_NR_EVENTS, &priv->ctxp);
if ((ret == -1 && errno == ENOSYS) || ret == -ENOSYS) {
gf_log (this->name, GF_LOG_WARNING,
- "Linux AIO not availble at run-time."
+ "Linux AIO not available at run-time."
" Continuing with synchronous IO");
ret = 0;
goto out;
@@ -490,7 +490,7 @@ int
posix_aio_on (xlator_t *this)
{
gf_log (this->name, GF_LOG_INFO,
- "Linux AIO not availble at build-time."
+ "Linux AIO not available at build-time."
" Continuing with synchronous IO");
return 0;
}
@@ -499,7 +499,7 @@ int
posix_aio_off (xlator_t *this)
{
gf_log (this->name, GF_LOG_INFO,
- "Linux AIO not availble at build-time."
+ "Linux AIO not available at build-time."
" Continuing with synchronous IO");
return 0;
}