git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* Clone corruption to G4 MacOSX
@ 2007-10-03  4:29 Perry Wagle
  2007-10-03  5:28 ` Kyle McMartin
  2007-10-03  5:44 ` Junio C Hamano
  0 siblings, 2 replies; 4+ messages in thread
From: Perry Wagle @ 2007-10-03  4:29 UTC (permalink / raw)
  To: git

I have a G4 iBook running MacOSX 10.4.10.  If I build the most recent  
production git (git-1.5.3.2) from the tarball from the git website, I  
get a corrupt copy of Linus's kernel repository (git://git.kernel.org/ 
pub/scm/linux/kernel/git/torvalds/linux-2.6.git) when I try to clone  
it.  Specifically, my copy is missing several files, including ./ 
include/linux/netfilter/xt_CONNMARK.h.  The involved files seem to be:

include/linux/netfilter/xt_CONNMARK.h
include/linux/netfilter/xt_DSCP.h
include/linux/netfilter/xt_MARK.h
include/linux/netfilter/xt_TCPMSS.h
include/linux/netfilter_ipv4/ipt_CONNMARK.h
include/linux/netfilter_ipv4/ipt_DSCP.h
include/linux/netfilter_ipv4/ipt_ECN.h
include/linux/netfilter_ipv4/ipt_MARK.h
include/linux/netfilter_ipv4/ipt_TCPMSS.h
include/linux/netfilter_ipv4/ipt_TOS.h
include/linux/netfilter_ipv4/ipt_TTL.h
include/linux/netfilter_ipv6/ip6t_HL.h
include/linux/netfilter_ipv6/ip6t_MARK.h
net/ipv4/netfilter/ipt_ECN.c
net/ipv4/netfilter/ipt_TOS.c
net/ipv4/netfilter/ipt_TTL.c
net/ipv6/netfilter/ip6t_HL.c
net/netfilter/xt_CONNMARK.c
net/netfilter/xt_DSCP.c
net/netfilter/xt_MARK.c
net/netfilter/xt_TCPMSS.c

I first noticed this corruption around August 14, 2007, when it  
seemed to be in the head of the clone of Linus's repository.  I was  
able to make it go away by committing the HEAD.  I was just starting  
with git, and figured I got some incomplete copy because Linus was in  
the middle of something.  Now I cannot find any commits for  
xt_CONNMARK.h or xt_connmark.h since 2006, especially around August  
14, but that might be my naivete.

If I clone Linus's repository to a x86 machine, I get no corruption.

My wild ass guess is that being big-endian is causing trouble.

-- Perry

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: Clone corruption to G4 MacOSX
  2007-10-03  4:29 Clone corruption to G4 MacOSX Perry Wagle
@ 2007-10-03  5:28 ` Kyle McMartin
  2007-10-03  5:50   ` Perry Wagle
  2007-10-03  5:44 ` Junio C Hamano
  1 sibling, 1 reply; 4+ messages in thread
From: Kyle McMartin @ 2007-10-03  5:28 UTC (permalink / raw)
  To: Perry Wagle; +Cc: git

On Tue, Oct 02, 2007 at 09:29:07PM -0700, Perry Wagle wrote:
> If I clone Linus's repository to a x86 machine, I get no corruption.
> 
> My wild ass guess is that being big-endian is causing trouble.
> 

The problem is MacOSX uses a case-insensitive filesystem by default...

Cheers,
	Kyle

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: Clone corruption to G4 MacOSX
  2007-10-03  4:29 Clone corruption to G4 MacOSX Perry Wagle
  2007-10-03  5:28 ` Kyle McMartin
@ 2007-10-03  5:44 ` Junio C Hamano
  1 sibling, 0 replies; 4+ messages in thread
From: Junio C Hamano @ 2007-10-03  5:44 UTC (permalink / raw)
  To: Perry Wagle; +Cc: git

Perry Wagle <wagle@cs.indiana.edu> writes:

> include/linux/netfilter/xt_CONNMARK.h.  The involved files seem to be:
>
> include/linux/netfilter/xt_CONNMARK.h
> include/linux/netfilter/xt_DSCP.h
> include/linux/netfilter/xt_MARK.h
> include/linux/netfilter/xt_TCPMSS.h
> include/linux/netfilter_ipv4/ipt_CONNMARK.h
> include/linux/netfilter_ipv4/ipt_DSCP.h
> include/linux/netfilter_ipv4/ipt_ECN.h
> include/linux/netfilter_ipv4/ipt_MARK.h
> include/linux/netfilter_ipv4/ipt_TCPMSS.h
> include/linux/netfilter_ipv4/ipt_TOS.h
> include/linux/netfilter_ipv4/ipt_TTL.h
> include/linux/netfilter_ipv6/ip6t_HL.h
> include/linux/netfilter_ipv6/ip6t_MARK.h
> net/ipv4/netfilter/ipt_ECN.c
> net/ipv4/netfilter/ipt_TOS.c
> net/ipv4/netfilter/ipt_TTL.c
> net/ipv6/netfilter/ip6t_HL.c
> net/netfilter/xt_CONNMARK.c
> net/netfilter/xt_DSCP.c
> net/netfilter/xt_MARK.c
> net/netfilter/xt_TCPMSS.c
>
> I first noticed this corruption around August 14, 2007, when it seemed
> ...
>
> If I clone Linus's repository to a x86 machine, I get no corruption.
>
> My wild ass guess is that being big-endian is causing trouble.

Is the filesystem HFS+ that is case-losing?

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: Clone corruption to G4 MacOSX
  2007-10-03  5:28 ` Kyle McMartin
@ 2007-10-03  5:50   ` Perry Wagle
  0 siblings, 0 replies; 4+ messages in thread
From: Perry Wagle @ 2007-10-03  5:50 UTC (permalink / raw)
  To: Kyle McMartin; +Cc: git

Yeah, that'd be it.  Thanks!

-- Perry


On Oct 2, 2007, at 10:28 PM, Kyle McMartin wrote:

> On Tue, Oct 02, 2007 at 09:29:07PM -0700, Perry Wagle wrote:
>> If I clone Linus's repository to a x86 machine, I get no corruption.
>>
>> My wild ass guess is that being big-endian is causing trouble.
>>
>
> The problem is MacOSX uses a case-insensitive filesystem by default...
>
> Cheers,
> 	Kyle
> -
> To unsubscribe from this list: send the line "unsubscribe git" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2007-10-03  5:50 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-10-03  4:29 Clone corruption to G4 MacOSX Perry Wagle
2007-10-03  5:28 ` Kyle McMartin
2007-10-03  5:50   ` Perry Wagle
2007-10-03  5:44 ` Junio C Hamano

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).