| View previous topic :: View next topic |
| Author |
Message |
aTan Tux's lil' helper


Joined: 06 Jan 2007 Posts: 134 Location: Czech Republic (Ukraine)
|
|
| Back to top |
|
 |
mantoo Tux's lil' helper


Joined: 08 Dec 2007 Posts: 98 Location: Germany
|
Posted: Tue Jan 03, 2012 2:35 pm Post subject: |
|
|
Got a weird question here... maybe it's more GIT-related than zen-related, but actually I think, it's really a more interesting question for the users, as well as for the zen-project maintainers...
on the websites they ask kindly not to clone zen twice if one likes to get stable & unstable as well, to avoid unnecessary traffic. what I observed is, that if I dont pull for a somewhat longer period, the pull most likely never applies due to some conflicts...
just some minutes ago I pulled, having zen-3.1.5 as the latest 'base'
it took really long to count like 2.3 mio remote files, to transfer like 450 mb, only to see what I already expected. not applicable due to some conflicts (pls dont ask, dont have that msgs anymore)
then I did, what i always do... backed up my config, recloned stable (with "--depth=1"-switch), and it were only like 86k objects counted, and 130 mb transferred... is that difference related to the pull, which maybe does exactly not what depth=1 does? is it possible to pull with only depth=1 ? I could not find anything related to that...
thanks |
|
| Back to top |
|
 |
Ant P. Veteran

Joined: 18 Apr 2009 Posts: 1920 Location: UK
|
Posted: Tue Jan 03, 2012 5:07 pm Post subject: |
|
|
To save you some time and the zen servers several gigabytes of bandwidth, this is the right way to update the tree:
|
|
| Back to top |
|
 |
Dont Panic Guru


Joined: 20 Jun 2007 Posts: 317 Location: SouthEast U.S.A.
|
Posted: Tue Jan 03, 2012 5:51 pm Post subject: |
|
|
I've always had trouble every time I've tried to use a shallow clone (--depth). It seems like it should be a useful way of saving bandwidth, but it seldom gives me a useful repository.
From the man page for git-clone:
| Quote: | --depth <depth>
Create a shallow clone with a history truncated to the specified
number of revisions. A shallow repository has a number of
limitations (you cannot clone or fetch from it, nor push from nor
into it), but is adequate if you are only interested in the recent
history of a large project with a long history, and would want to
send in fixes as patches.
|
So based on the man page, you may not be able to update a shallow clone with a "git pull". |
|
| Back to top |
|
 |
mantoo Tux's lil' helper


Joined: 08 Dec 2007 Posts: 98 Location: Germany
|
Posted: Tue Jan 03, 2012 9:48 pm Post subject: |
|
|
| Ant P. wrote: | To save you some time and the zen servers several gigabytes of bandwidth, this is the right way to update the tree:
|
OK, i'll try that. To clear things up: doing a rebase, the last received commit gets the new base (say A); so a further pull (w/o rebase) applies the corresponding diffs and gets B, and yet another pull (w/o rebase) gets C, but does not only apply the diffs since B, but all diffs since A, as that is the initial base?
So rebasing every time simply reduces bandwidth, if I got that right, as only the diffs for the latest changes are pulled? What about the local overhead? Isn't it reduced as well? Really sounds like a win/win-thing ?!?
Let me know, if I got that right . Thanks |
|
| Back to top |
|
 |
Ant P. Veteran

Joined: 18 Apr 2009 Posts: 1920 Location: UK
|
Posted: Wed Jan 04, 2012 12:05 am Post subject: |
|
|
A --rebase throws away your local working copy for upstream's latest commit then applies any local commits on top of it. Since you're unlikely to have local commits it just updates to the latest with no questions asked.
The default pull does a merge instead, which doesn't work when upstream keeps recycling the master branch name for entirely different trees.
In both cases you're only downloading the changes since your last pull/clone/fetch. |
|
| Back to top |
|
 |
mantoo Tux's lil' helper


Joined: 08 Dec 2007 Posts: 98 Location: Germany
|
Posted: Wed Jan 04, 2012 12:26 am Post subject: |
|
|
| Ant P. wrote: | A --rebase throws away your local working copy for upstream's latest commit then applies any local commits on top of it. Since you're unlikely to have local commits it just updates to the latest with no questions asked.
The default pull does a merge instead, which doesn't work when upstream keeps recycling the master branch name for entirely different trees.
In both cases you're only downloading the changes since your last pull/clone/fetch. |
k, thanks for clearing that up for me! |
|
| Back to top |
|
 |
Holysword l33t


Joined: 19 Nov 2006 Posts: 683 Location: Greece
|
Posted: Wed Feb 08, 2012 7:24 pm Post subject: |
|
|
| kernelOfTruth wrote: | | jw5801 wrote: | | Is SLQB around any more? It seems to have disappeared since 2.6.35. Currently using zen-stable and getting absolutely horrendous performance under any semblance of disk load. I remember this used to happen and went away completely when I started using BFS, BFQ and SLQB. At the moment I'm using BFS, BFQ and SLUB. |
SLUB sux and this is fact
so switch to SLAB and you'll be way more happier |
There isn't any circumstance in which SLUB would beat SLAB? Normally these things depend on the purpose of your local machine, no? Where could I read more about this SLUB vs SLAB thing? (I'm using an i7 and constantly running heavy matlab/fortran tests, with high memory & cpu usage)
EDIT#1: Also concerned with cgroups thing... any news regarding stability/performance? _________________ i7-720QM | nVidia GT 230M | 4 GB DDR3
"Nolite arbitrari quia venerim mittere pacem in terram non veni pacem mittere sed gladium" (Yeshua Ha Mashiach) |
|
| Back to top |
|
 |
shgadwa Guru

Joined: 12 Mar 2009 Posts: 326
|
Posted: Thu Apr 05, 2012 5:23 pm Post subject: |
|
|
I had gentoo running on my other laptop, but the hard drive crashed and I got a different (newer) laptop. I am installing gentoo on my new laptop now (actually, typing from links on the minimal CD!).
When I had gentoo on my laptop, I used zen-sources as opposed to gentoo-sources. I've never had any problems with it. It 'seemed' faster than the gentoo-sources kernel, and it was highly configurable. However, a lot can change in a year so I'm wondering... what is your guy's opinion on zen-sources vs gentoo sources? Is zen-sources an overall better kernel, or no? Whats the difference?
Thanks!
~Shawn |
|
| Back to top |
|
 |
kernelOfTruth Watchman


Joined: 20 Dec 2005 Posts: 5490 Location: Vienna, Austria; Germany; hello world :)
|
Posted: Fri Apr 06, 2012 2:05 pm Post subject: |
|
|
| Holysword wrote: | | kernelOfTruth wrote: | | jw5801 wrote: | | Is SLQB around any more? It seems to have disappeared since 2.6.35. Currently using zen-stable and getting absolutely horrendous performance under any semblance of disk load. I remember this used to happen and went away completely when I started using BFS, BFQ and SLQB. At the moment I'm using BFS, BFQ and SLUB. |
SLUB sux and this is fact
so switch to SLAB and you'll be way more happier |
There isn't any circumstance in which SLUB would beat SLAB? Normally these things depend on the purpose of your local machine, no? Where could I read more about this SLUB vs SLAB thing? (I'm using an i7 and constantly running heavy matlab/fortran tests, with high memory & cpu usage)
EDIT#1: Also concerned with cgroups thing... any news regarding stability/performance? |
I got most of the data from lkml
slub nowadays might be pretty similar in terms of performance to slab - it also should be as stable as slab (haven't used slab for some kernel releases now),
slab uses somewhat more resources from what I read and slub is tailored toward efficiency in memory usage
for your kind of work or depending on the work load - generally
several components should be crucial (the most important from my experience so far)
- rcu
- slab/slub/...
- CFS / BFS
the other subsystems of course also play a role so you might want to take the kernel-release which suits you best
for me and my hardware (also core i7) & workload (mainly compiling, backing up 1-2 TB of data via rsync, multimedia content, etc.) it's currently 3.3 [where lockless writeback, mmu preemptibility and other stuff is included which got added in the previous few kernel releases]
I'm not observing lkml as closely anymore as in the past, due to lack of time, so I might miss some recent additions / changes _________________ Unofficial minimal livecd x86/amd64 w/reiser4+truecrypt (by Neo2)
2.6.37.2_plus_v1: BFS, CFS,THP,compaction, zcache or TOI
Hardcore Linux user since 2004  |
|
| Back to top |
|
 |
TimeManx n00b

Joined: 11 Jul 2011 Posts: 51
|
Posted: Sun Apr 29, 2012 12:14 pm Post subject: |
|
|
| Can someone tell me how i can get a diff for the 3.3 kernel? I don't wanna download the entire tree. |
|
| Back to top |
|
 |
Ant P. Veteran

Joined: 18 Apr 2009 Posts: 1920 Location: UK
|
Posted: Sun Apr 29, 2012 2:16 pm Post subject: |
|
|
| The diff for 3.2-3.3 is in here. |
|
| Back to top |
|
 |
TimeManx n00b

Joined: 11 Jul 2011 Posts: 51
|
Posted: Sun Apr 29, 2012 2:30 pm Post subject: |
|
|
| Ant P. wrote: | | The diff for 3.2-3.3 is in here. |
Sorry I didn't make myself clear previously. I actually meant the diff for zen-kernel. |
|
| Back to top |
|
 |
bchaser33 n00b

Joined: 20 Sep 2010 Posts: 7
|
Posted: Tue Jul 03, 2012 4:51 pm Post subject: |
|
|
| They got rid of tags. How do you update to latest kernel now. Im lazy therefore im stuck on kernel 3.3.7. |
|
| Back to top |
|
 |
TimeManx n00b

Joined: 11 Jul 2011 Posts: 51
|
Posted: Tue Jul 03, 2012 5:17 pm Post subject: |
|
|
| bchaser33 wrote: | | They got rid of tags. How do you update to latest kernel now. Im lazy therefore im stuck on kernel 3.3.7. |
They updated the diffs http://downloads.zen-kernel.org/snapshots/ |
|
| Back to top |
|
 |
TechwoIf n00b

Joined: 06 Aug 2007 Posts: 14
|
Posted: Mon Jul 09, 2012 2:24 am Post subject: ebuild for zen using kernel 3.4.4 |
|
|
I added an ebuild for zen stable 3.4.4 kernel in my overlay at http://gentoo.techwolf.net/
I would just attached the ebuild and zen patch here, but there does not seem to be any way to attached large compressed patches here.
edit: I just added 3.4.10 and 3.5.3 from the zen stable branches.
Last edited by TechwoIf on Fri Sep 07, 2012 12:20 am; edited 1 time in total |
|
| Back to top |
|
 |
weedy Apprentice

Joined: 24 Jun 2005 Posts: 233
|
|
| Back to top |
|
 |
Ant P. Veteran

Joined: 18 Apr 2009 Posts: 1920 Location: UK
|
Posted: Wed Aug 22, 2012 5:49 pm Post subject: |
|
|
| Does anyone else use this on a single-core Atom? I've noticed /proc/cpuinfo lists "cpu cores" now, which is zero for the second hyperthread (makes sense), but lscpu seems to be dividing by that number and now I get a big fat crash. Kinda breaks the distcc setup I was using... |
|
| Back to top |
|
 |
cheater1034 Veteran


Joined: 09 Sep 2004 Posts: 1554
|
Posted: Thu Aug 23, 2012 4:48 pm Post subject: |
|
|
Hello  _________________ IRC!: #zen-sources on irc.rizon.net
zen-kernel.org
Zen bugs/requests?: http://zen-kernel.org/issues
--
Hello |
|
| Back to top |
|
 |
Ant P. Veteran

Joined: 18 Apr 2009 Posts: 1920 Location: UK
|
Posted: Thu Aug 23, 2012 5:40 pm Post subject: |
|
|
| Wow, it's been a while. |
|
| Back to top |
|
 |
cheater1034 Veteran


Joined: 09 Sep 2004 Posts: 1554
|
Posted: Fri Aug 24, 2012 7:00 pm Post subject: |
|
|
| Ant P. wrote: | | Wow, it's been a while. |
Yes currently working with an android development team Just thought I'd check in seems dead here  _________________ IRC!: #zen-sources on irc.rizon.net
zen-kernel.org
Zen bugs/requests?: http://zen-kernel.org/issues
--
Hello |
|
| Back to top |
|
 |
massimo Veteran


Joined: 22 Jun 2003 Posts: 1085 Location: Austria
|
Posted: Mon Oct 01, 2012 6:40 pm Post subject: |
|
|
Does anybody know what happened to zen-kernel.org? _________________ Hello, IT. Have you tried turning it off and on again? |
|
| Back to top |
|
 |
tabascoz n00b


Joined: 14 May 2003 Posts: 38 Location: Rio de Janeiro
|
Posted: Mon Oct 01, 2012 10:41 pm Post subject: |
|
|
I don't know. Both website and git are down for me too.
Bump! _________________ Tabascoz |
|
| Back to top |
|
 |
TimeManx n00b

Joined: 11 Jul 2011 Posts: 51
|
Posted: Tue Oct 02, 2012 4:53 am Post subject: |
|
|
According to Jan Steffens in the zen-kernel googlegroup
| Jan Steffens wrote: | On Mon, Oct 1, 2012 at 6:18 PM, Nigger wrote:
> Can't connect to git for a couple of days now
Yeah, our server is gone.
We still have the github mirror: http://github.com/damentz/zen-kernel |
|
|
| Back to top |
|
 |
NotQuiteSane Guru


Joined: 30 Jan 2005 Posts: 470 Location: Klamath Falls, Jefferson, USA, North America, Midgarth
|
Posted: Wed Oct 03, 2012 9:19 pm Post subject: |
|
|
So does this mean Zen is dying, or just a temporary setback?
nqs _________________ These opinions are mine, mine I say! Piss off and get your own.
As I see it -- An irregular blog, Improved with new location
To delete French language packs from system use 'sudo rm -fr /' |
|
| Back to top |
|
 |
|