]> git.ipfire.org Git - thirdparty/coreutils.git/commitdiff
add to comment
authorJim Meyering <jim@meyering.net>
Sat, 24 Jul 1999 09:40:23 +0000 (09:40 +0000)
committerJim Meyering <jim@meyering.net>
Sat, 24 Jul 1999 09:40:23 +0000 (09:40 +0000)
src/dd.c

index 6e0da6b265df3d555a6c87793d1beb2ed325cceb..d4978248c3badb98358f7e090086a21e3120a875 100644 (file)
--- a/src/dd.c
+++ b/src/dd.c
@@ -864,7 +864,12 @@ dd_copy (void)
      page boundary to cover all bases.  Note that due to the swab
      algorithm, we must have at least one byte in the page before
      the input buffer;  thus we allocate 2 pages of slop in the
-     real buffer.  8k above the blocksize shouldn't bother anyone.  */
+     real buffer.  8k above the blocksize shouldn't bother anyone.
+
+     The page alignment is necessary on any linux system that supports
+     either the SGI raw I/O patch or Steven Tweedies raw I/O patch.
+     It is necessary when accessing raw (i.e. character special) disk
+     devices on Unixware or other SVR4-derived system.  */
 
   real_buf = (unsigned char *) xmalloc (input_blocksize
                                        + 2 * SWAB_ALIGN_OFFSET