home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #20 / NN_1992_20.iso / spool / comp / unix / aix / 9419 < prev    next >
Encoding:
Internet Message Format  |  1992-09-08  |  1.6 KB

  1. Path: sparky!uunet!cis.ohio-state.edu!news.sei.cmu.edu!drycas.club.cc.cmu.edu!cantaloupe.srv.cs.cmu.edu!crabapple.srv.cs.cmu.edu!andrew.cmu.edu!<UNAUTHENTICATED>+
  2. Newsgroups: comp.unix.aix
  3. Subject: Re: AIX LVM Metadata Area
  4. Message-ID: <8eeKJUP0BwxaEIDllI@transarc.com>
  5. From: Barry_Wolman@transarc.com
  6. Date: Sat,  5 Sep 1992 21:56:48 -0400 
  7. References: <webIbvv0Bwx3M1871b@transarc.com>
  8. Organization: Carnegie Mellon, Pittsburgh, PA
  9. In-Reply-To: <webIbvv0Bwx3M1871b@transarc.com>
  10. Lines: 21
  11.  
  12. Barry_Wolman@transarc.com writes:
  13. > An AIX Logical Volume has N-bytes of metadata at the start of the
  14. > volume.  User code that writes to a logical volume is supposed to
  15. > avoid writing in this area.  I need to determine the value of N.
  16. > I've heard "don't write in the first page" ... does this mean N=4096?
  17. > Thanks,
  18. > Barry Wolman
  19.  
  20. N=512.  The info in the first block of a LV is there for information
  21. purposes only.  AIX does not depend on this data.  If AIX finds the
  22. string "AIX LVCB" at the start of a logical volume, it assumes the
  23. meta data area is still valid and updates the date fields.  If AIX
  24. doesn't find this string, it assumes that a user program over-wrote
  25. the header info and doesn't modify this header.  This may result in
  26. warning messages from LV operations, e.g. extend logical volume, but
  27. the requested operation is correctly performed.  smit has a problem
  28. because it doesn't distinguish between warnings and fatal errors from
  29. the commands that it runs.  If you perform an operation on a LV from
  30. smit and the LV header was over-written, smit will tell you the
  31. operation failed evern though it actually completed successfully.
  32.