cluster-devel.redhat.com archive mirror
 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 16:17:36 -0000	[thread overview]
Message-ID: <20070320161736.22092.qmail@sourceware.org> (raw)

CVSROOT:	/cvs/cluster
Module name:	conga
Branch: 	RHEL5
Changes by:	kupcevic at sourceware.org	2007-03-20 16:17:36

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=RHEL5&r1=1.8.2.1&r2=1.8.2.2

--- conga/ricci/modules/storage/parted_wrapper.cpp	2007/03/09 04:15:57	1.8.2.1
+++ conga/ricci/modules/storage/parted_wrapper.cpp	2007/03/20 16:17:35	1.8.2.2
@@ -596,8 +596,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");
@@ -667,7 +668,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;
@@ -675,11 +676,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 16:17 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2007-03-20 16:17 kupcevic [this message]
  -- strict thread matches above, loose matches on Subject: below --
2007-03-20 15:48 [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=20070320161736.22092.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).