]> git.proxmox.com Git - ceph.git/blobdiff - ceph/doc/cephfs/lazyio.rst
import quincy beta 17.1.0
[ceph.git] / ceph / doc / cephfs / lazyio.rst
index 9cd9ae74a592a40900f354f7d062cb80d4dfbbaf..b300587740882243df493458df220251abbabfbe 100644 (file)
@@ -23,7 +23,7 @@ Using LazyIO
 ============
 
 LazyIO includes two methods ``lazyio_propagate()`` and ``lazyio_synchronize()``.
-With LazyIO enabled, writes may not be visble to other clients until
+With LazyIO enabled, writes may not be visible to other clients until
 ``lazyio_propagate()`` is called. Reads may come from local cache (irrespective of
 changes to the file by other clients) until ``lazyio_synchronize()`` is called.
 
@@ -59,7 +59,7 @@ particular client/file descriptor in a parallel application:
             
             /* The barrier makes sure changes associated with all file descriptors
             are propagated so that there is certainty that the backing file 
-            is upto date */
+            is up to date */
             application_specific_barrier();
 
             char in_buf[40];