You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafficserver.apache.org by ig...@apache.org on 2012/10/12 17:35:01 UTC

git commit: propose, vote

Updated Branches:
  refs/heads/3.2.x 234a7a256 -> 9a5573152


propose, vote


Project: http://git-wip-us.apache.org/repos/asf/trafficserver/repo
Commit: http://git-wip-us.apache.org/repos/asf/trafficserver/commit/9a557315
Tree: http://git-wip-us.apache.org/repos/asf/trafficserver/tree/9a557315
Diff: http://git-wip-us.apache.org/repos/asf/trafficserver/diff/9a557315

Branch: refs/heads/3.2.x
Commit: 9a5573152b7c49e2913f9e22398e3d227d40a41f
Parents: 234a7a2
Author: Igor Galić <i....@brainsware.org>
Authored: Fri Oct 12 17:34:48 2012 +0200
Committer: Igor Galić <i....@brainsware.org>
Committed: Fri Oct 12 17:34:48 2012 +0200

----------------------------------------------------------------------
 STATUS                |    8 +++++++-
 iocore/cache/Store.cc |    7 -------
 2 files changed, 7 insertions(+), 8 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/trafficserver/blob/9a557315/STATUS
----------------------------------------------------------------------
diff --git a/STATUS b/STATUS
index 0413d25..cb17369 100644
--- a/STATUS
+++ b/STATUS
@@ -53,7 +53,13 @@ PATCHES PROPOSED TO BACKPORT FROM TRUNK:
   *) Fix abnormally high CPU usage on FreeBSD/OpenBSD while idle.
    Trunk: 8665bbb1e5f34e6de5d709b0314a8fcb1eefec8d
    Jira: https://issues.apache.org/jira/browse/TS-993 (in part)
-   +1: humbedooh
+   +1: humbedooh, igalic
+
+  *) Fix signed/unsigned compilation issues in Vec, especially
+   make check. 
+   Trunk: 8ab44edd
+   Jira: https://issues.apache.org/jira/browse/TS-1345
+   +1: igalic
 
 
 RELEASE PROCESS

http://git-wip-us.apache.org/repos/asf/trafficserver/blob/9a557315/iocore/cache/Store.cc
----------------------------------------------------------------------
diff --git a/iocore/cache/Store.cc b/iocore/cache/Store.cc
index 1c05abe..35a7eed 100644
--- a/iocore/cache/Store.cc
+++ b/iocore/cache/Store.cc
@@ -447,7 +447,6 @@ Span::init(char *an, int64_t size)
 
   case S_IFBLK:{
   case S_IFCHR:
-#ifdef HAVE_RAW_DISK_SUPPORT // FIXME: darwin, freebsd
       struct disklabel dl;
       struct diskslices ds;
       if (ioctl(fd, DIOCGDINFO, &dl) < 0) {
@@ -499,12 +498,6 @@ Span::init(char *an, int64_t size)
           size = fsize;
         break;
       }
-#else /* !HAVE_RAW_DISK_SUPPORT */
-    Warning("Currently Raw Disks are not supported" );
-    err = "Currently Raw Disks are not supported";
-    goto Lfail;
-    break;
-#endif /* !HAVE_RAW_DISK_SUPPORT */
     }
   case S_IFDIR:
   case S_IFREG: