All of lore.kernel.org
 help / color / mirror / Atom feed
From: kupcevic@sourceware.org <kupcevic@sourceware.org>
To: cluster-devel.redhat.com
Subject: [Cluster-devel] conga/ricci/modules/storage parted_wrapper.cpp
Date: 20 Mar 2007 15:48:30 -0000	[thread overview]
Message-ID: <20070320154830.4331.qmail@sourceware.org> (raw)

CVSROOT:	/cvs/cluster
Module name:	conga
Branch: 	RHEL4
Changes by:	kupcevic at sourceware.org	2007-03-20 15:48:30

Modified files:
	ricci/modules/storage: parted_wrapper.cpp 

Log message:
	storage module: long long constant int to long long int conversion error? C idiocy

Patches:
http://sourceware.org/cgi-bin/cvsweb.cgi/conga/ricci/modules/storage/parted_wrapper.cpp.diff?cvsroot=cluster&only_with_tag=RHEL4&r1=1.8.4.1&r2=1.8.4.2

--- conga/ricci/modules/storage/parted_wrapper.cpp	2007/03/09 04:17:56	1.8.4.1
+++ conga/ricci/modules/storage/parted_wrapper.cpp	2007/03/20 15:48:29	1.8.4.2
@@ -594,8 +594,9 @@
   long long bbb;
   list<PartedPartition> parts = plain_partitions(pt_path, aaa, bbb);
   
-  seg_begin = seg_begin / 1000000;
-  long long seg_end   = seg_begin + size / 1000000;
+  // parted defines 1KB as 1000 bytes
+  seg_begin = seg_begin / 1000 / 1000;
+  long long seg_end   = seg_begin + size / 1000 / 1000;
   
   vector<String> args;
   args.push_back("-s");
@@ -665,7 +666,7 @@
   long long multiplier;
   // parted defines 1KB as 1000 bytes.
   if (s.find("b") == s.npos)
-    multiplier = 1000000;  // by old parted behavior, size is in MB
+    multiplier = 1000 * 1000;  // by old parted behavior, size is in MB
   else {
     if (s.size() < 3)
       throw String("parted size has an invalid value: ") + s;
@@ -673,11 +674,11 @@
     if (s[s.size()-2] == 'k')
       multiplier = 1000;
     else if (s[s.size()-2] == 'm')
-      multiplier = 1000000;
+      multiplier = 1000 * 1000;
     else if (s[s.size()-2] == 'g')
-      multiplier = 1000000000;
+      multiplier = 1000 * 1000 * 1000;
     else if (s[s.size()-2] == 't')
-      multiplier = 1000000000000;
+      multiplier = 1000 * 1000 * 1000 * 1000;
   }
   
   return (long long) utils::to_float(s) * multiplier;



             reply	other threads:[~2007-03-20 15:48 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2007-03-20 15:48 kupcevic [this message]
  -- strict thread matches above, loose matches on Subject: below --
2007-03-20 16:17 [Cluster-devel] conga/ricci/modules/storage parted_wrapper.cpp kupcevic
2007-03-20 15:31 kupcevic
2007-03-09  4:19 rmccabe
2007-03-09  4:17 rmccabe
2007-03-09  4:15 rmccabe

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20070320154830.4331.qmail@sourceware.org \
    --to=kupcevic@sourceware.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.