Author: ae
Date: Fri Jun  3 06:58:24 2011
New Revision: 222642
URL: http://svn.freebsd.org/changeset/base/222642

Log:
  Add diagnostic message about not aligned partitions.
  
  Idea from:    ivoras

Modified:
  head/sys/geom/part/g_part.c

Modified: head/sys/geom/part/g_part.c
==============================================================================
--- head/sys/geom/part/g_part.c Fri Jun  3 06:34:29 2011        (r222641)
+++ head/sys/geom/part/g_part.c Fri Jun  3 06:58:24 2011        (r222642)
@@ -248,6 +248,7 @@ g_part_check_integrity(struct g_part_tab
 {
        struct g_part_entry *e1, *e2;
        struct g_provider *pp;
+       off_t offset;
        int failed;
 
        failed = 0;
@@ -294,6 +295,16 @@ g_part_check_integrity(struct g_part_tab
                            (intmax_t)table->gpt_last);
                        failed++;
                }
+               if (pp->stripesize > 0) {
+                       offset = e1->gpe_start * pp->sectorsize;
+                       if (e1->gpe_offset > offset)
+                               offset = e1->gpe_offset;
+                       if ((offset + pp->stripeoffset) % pp->stripesize) {
+                               DPRINTF("partition %d is not aligned on %u "
+                                   "bytes\n", e1->gpe_index, pp->stripesize);
+                               /* Don't treat this as a critical failure */
+                       }
+               }
                e2 = e1;
                while ((e2 = LIST_NEXT(e2, gpe_entry)) != NULL) {
                        if (e2->gpe_deleted || e2->gpe_internal)
@@ -723,7 +734,11 @@ g_part_ctl_add(struct gctl_req *req, str
        if (gpp->gpp_parms & G_PART_PARM_OUTPUT) {
                sb = sbuf_new_auto();
                G_PART_FULLNAME(table, entry, sb, gp->name);
-               sbuf_cat(sb, " added\n");
+               if (pp->stripesize > 0 && entry->gpe_pp->stripeoffset != 0)
+                       sbuf_printf(sb, " added, but partition is not "
+                           "aligned on %u bytes\n", pp->stripesize);
+               else
+                       sbuf_cat(sb, " added\n");
                sbuf_finish(sb);
                gctl_set_param(req, "output", sbuf_data(sb), sbuf_len(sb) + 1);
                sbuf_delete(sb);
_______________________________________________
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"

Reply via email to