| From | Subject | Date |
|---|---|---|
| Sean Kelley | GIT plugin for Jira (issue tracker)
I was curious if anyone has created a GIT plugin for the Jira issue
tracker? I have come across a mercurial plugin. I have an idea that
I could nightly track our GIT repository with mercurial then I could
use the mercurial plugin with Jira. But I wanted to check first on
the existence of a GIT plugin for Jira.[1]
Thanks,
Sean
[1] http://www.atlassian.com/software/jira/
--
Sean Kelley
-
| Dec 1, 5:28 pm 2006 |
| Nicolas Pitre | [PATCH] make 'git add' a first class user friendly interface...
I personally think this is going to make the GIT experience lot more
enjoyable for everybody. This brings the power of the index up front
using a proper mental model without talking about the index at all. See
for example how all the technical discussion has been evacuated from the
git-add man page.
Any content to be committed must be added together. Whether that
content comes from new files or modified files doesn't matter. You just
need to "add" it, either with git-add, or by providing g...
| Dec 1, 4:06 pm 2006 |
| Junio C Hamano | Re: [PATCH] make 'git add' a first class user friendly inter...
I like the direction this is taking us.
The documentation update is in the same spirit with the sample
rewrite of 'git diff' manpage. We might want to tweak the
wording to make this round of documentation updates consistent.
My preferences:
- You used the word "changeset"; I am not sure that is a good
wording. The recent explanation I saw on the list and liked
were "you _stage_ your changes to prepare for the next
commit (footnote: the staging area is called 'the index')".
My...
| Dec 1, 6:31 pm 2006 |
| Nicolas Pitre | Re: [PATCH] make 'git add' a first class user friendly inter...
Why not? It is a well defined word in the SCM context, and I really
think what is built in the index before a commit is a changeset.
But actually I'd prefer "set of changes" even better as it is more
First I don't know if "to stage" is such a good verb. According to
http://dictionary.reference.com/search?q=stage I think "stage" has just
too many definitions already, and none of which really make me think of
In technical docs maybe. But I don't see the need for this wording in
the t...
| Dec 1, 11:05 pm 2006 |
| Alan Chandler | Re: [PATCH] make 'git add' a first class user friendly inter...
How about
Contrary to other SCM's, with GIT you have to explicitly "add" the content
that you want to commit before it is made; it is not an offence to leave
changes outside the index if you want to leave them to a later commit.
However if you do want all changes from your working tree to be added to the
commit before it is made use the "-a" flag with the commit command and the
content will be added just before the commit is made.
--
Alan Chandler
http://www.chandlerfamily.org.uk
-
...
| Dec 1, 8:18 pm 2006 |
| Nicolas Pitre | Re: [PATCH] make 'git add' a first class user friendly inter...
Nah. Too many concepts in the same paragraph.
Nicolas
-
| Dec 1, 10:01 pm 2006 |
| Carl Worth | Garbled man pages (.sp instead of newline)
I've spent too much time just "talking" on this list and I'd like to
start "doing" more.
I can see a lot of things that I think I could improve in the
documentation, but when I tried to build them, I'm getting broken man
pages as a result. For example with "man git" I now see:
Git is a fast, scalable, distributed revision control system with an unusually rich
command set that provides both high-level operations and full access to
internals..sp See this [1]tutorial to get star...
| Dec 1, 1:57 pm 2006 |
| Jonas Fonseca | Re: Garbled man pages (.sp instead of newline)
The problem is that a newline is not inserted before the ".sp". I (and
apparently a lot of other people on #git) thought it was just something
broken by the system. It appears that the DocBook XSL files got broken
between 1.69.0 and 1.69.1, but it appears to have been fixed upstream (I
didn't try it by from looking at the xsl/manpages/block.xsl file it
seems to insert a newline again before inserting a ".sp")
Git already has a custom XSL file to handle callouts so this might be
the right place t...
| Dec 1, 3:01 pm 2006 |
| Carl Worth | [RFC] Introduce "git stage" (along with some heresy)
[This message, (yes,another long one from me), proposes 3 changes. The
first should be uncontroversial I think, while the second and third
are clear heresy, (and the second would require some amount of
re-training or re-configuration by existing git user). Pick and choose
as you see fit. I don't think they actually depend on each other,
though I'll present them here as parts of a whole.]
Change #1: Add "git stage" command, use "--staged" instead of "--index"
========================================...
| Dec 1, 1:36 pm 2006 |
| Marko Macek | Re: [RFC] Introduce "git stage" (along with some heresy)
/me likes (both emails).
Q: should git-commit require either -a or --staged when there is a
staged commit?
Mark
-
| Dec 1, 4:44 pm 2006 |
| Carl Worth | Some thoughts on resolving conflicts
By the way, back when we used to call it the "index" one of the things
that was often mentioned as a reason not to "hide the index" is that
the index ends up being so important during the process of resolving a
merge.
This is extremely true, and this is where git really starts to
shine. I've seen people get really put off by the index when they
first encounter "commit -a" or a messages instructing them to
"update-index" something. But, if people are properly presented with
what git offers for he...
| Dec 1, 4:03 pm 2006 |
| Anand Kumria | Re: selective git-update-index per diff(1) chunks
Is there a good receipe on how to do this? Everytime I do it, I try a
different method; since I'm testing out my understanding of things.
It'd nice to have some of these "advanced receipes" that people often do
noted down somewhere.
Sometimes I feel git is kind of like the Emacs of VCS ... there is always
more to learn, even when you think you have a good handle on things.
Cheers,
Anand
-
| Dec 1, 12:45 pm 2006 |
| Johannes Schindelin | Re: selective git-update-index per diff(1) chunks
Hi,
Can't say anything about advanced recipes, but I use a poor-man's
workflow:
$ git diff > a1.patch
$ vi a1.patch
<edit out what I want to _keep_>
$ git apply -R < a1.patch
<test & commit>
$ git apply < a1.patch
Of course, you could write a little wrapper around it, even one which asks
you which hunks you want to edit out. Should not be that hard...
Note that this is independent of the SCM you are using.
Ciao,
Dscho
-
| Dec 1, 3:42 pm 2006 |
| pclouds | [PATCH 2/3] Prepare for grouped common command list generation
Signed-off-by: Nguyễn Thái Ngọc Duy <pclouds@gmail.com>
---
generate-cmdlist.sh | 7 ++++++-
1 files changed, 6 insertions(+), 1 deletions(-)
diff --git a/generate-cmdlist.sh b/generate-cmdlist.sh
index 5450918..b45495d 100755
--- a/generate-cmdlist.sh
+++ b/generate-cmdlist.sh
@@ -9,7 +9,7 @@ struct cmdname_help
struct cmdname_help common_cmds[] = {"
-sort <<\EOF |
+cat <<\EOF |
add
apply
archive
@@ -41,6 +41,11 @@ verify-tag
EOF
while read cmd
do...
| Dec 1, 11:08 am 2006 |
| pclouds | [PATCH 3/3] Group common commands into for groups for easier...
Repository/Branch level commands are grouped into group Repository
File manipulation commands are in group Manipulation
Other status commands are in group Status
The rest is in group Other
Signed-off-by: Nguyễn Thái Ngọc Duy <pclouds@gmail.com>
---
This is a suggestion. Someone may have better layout than me.
generate-cmdlist.sh | 35 +++++++++++++++++++++--------------
1 files changed, 21 insertions(+), 14 deletions(-)
diff --git a/generate-cmdlist.sh b/generate-cmdlist.sh
ind...
| Dec 1, 11:08 am 2006 |
| Peter Baumann | Re: selective git-update-index per diff(1) chunks
I don't think it belongs in the plumbing, the git-update-index but I
think something like this would be very usefull.
AFAIR darcs has this functionality. It selectively ask for each hunk if
it should be commited. This would be awfull to have in git.
-Peter
-
| Dec 1, 7:33 am 2006 |
| Junio C Hamano | Re: selective git-update-index per diff(1) chunks
Peter Baumann <Peter.B.Baumann@stud.informatik.uni-erlangen.de>
I concur, on both counts. My own now-defunct Porcelain had the
darcs style interactive hunk selection because it felt so
useful (and sometimes it was).
-
| Dec 1, 7:38 am 2006 |
| Alexey Dobriyan | selective git-update-index per diff(1) chunks
Pretty often I end up with a file with two simple orthogonal fixes in it.
git-diff shows me both, that's OK.
Now I want to commit them as two separate commits. So far, it's
* getting full diff
* cp(1)
* hand-edit both diffs
* commit first
* commit second
Has anyone thought about aggregating this into git-update-index or
somewhere?
git-update-index -C1,3 #chunks 1, 3
git commit
git-update-index -C1,3 # chunks 2,5 in original numbering
git commit
Relying on diff(1) ...
| Dec 1, 7:23 am 2006 |
| Linus Torvalds | Re: selective git-update-index per diff(1) chunks
You can already do it, but it's called something else.
Instead of updating a certain hunk (which is fundamentally wrong, since it
depends on "diff" even working on that file), you can tell
git-update-index to update a certain _state_ for an arbitrary number of
files. Namely:
git-update-index [--cacheinfo <mode> <object> <file>]*
However, that obviously is very much a _plumbing_ command, and you need to
have some higher-level GUI on top of it to actually pick out the...
| Dec 1, 12:06 pm 2006 |
| Andy Parkins | [PATCH] Make git-commit cleverer - have it figure out whethe...
Raimund Bauer offered this suggestion (paraphrased):
"Maybe we could do git-commit -a _only_ if the index matches HEAD, and
otherwise keep current behavior? So people who don't care about the
index won't get tripped up, and when you do have a dirty index, you get
told about it?"
Johannes Schindelin pointed out that this isn't the right thing to do for
an --amend, so that is checked for. Additionally, it's probably not the
right thing to do if any files are specified with "--only" or
"--include...
| Dec 1, 7:06 am 2006 |
| Junio C Hamano | Re: [PATCH] Make git-commit cleverer - have it figure out wh...
I think another exception should be needed. If the index does
not match the working tree, it should not default to "-a".
Otherwise,
I want to fix another thing in pickaxe.
$ edit builtin-blame.c
My wife calls me. Away from desk for 20 minutes. Later I come
back.
$ git update-index builtin-pickaxe.c
I am so used to that name and did not realize that typo, and I
was not paying too much attention. My wife calls me again.
Away from desk and back in 20 minutes.
$ git commit -m '...
| Dec 1, 7:15 am 2006 |
| Andy Parkins | Re: [PATCH] Make git-commit cleverer - have it figure out wh...
No problem: just don't apply the patch :-) What you've asked for leaves it as
a no-op.
This patch activates "-a" when the index equals HEAD. i.e. git-commit would
do nothing in this situation. If it is disabled when the index doesn't match
the working tree, then we're back to "do nothing". i.e. HEAD==index==working
How does that help you? You've updated the index manually, so the
automatic "-a" is already disabled. Without this patch you would still have
committed the wrong thing.
...
| Dec 1, 8:33 am 2006 |
| Junio C Hamano | Re: [PATCH] Make git-commit cleverer - have it figure out wh...
I think there needs a bit of explanation and additional step
that happened here. This by the way is not a made-up example.
Everything, including the 20-minute away, were what happened
when I did the latest blame fix you saw a few days ago.
* I am still futzing with blame from time to time, and have
this change almost permanently in my working tree.
$ cat P.diff
diff --git a/builtin-blame.c b/builtin-blame.c
index dc3ffea..46ce45c 100644
--- a/builtin-blame.c
...
| Dec 1, 7:32 am 2006 |
| Wink Saville | Resolving conflicts
Sorry to be so ignorant, but I just updated to 2.6.19 using:
git-checkout master
git-pull
...
sound/usb/usbaudio.c | 3
usr/Makefile | 2
92 files changed, 888 insertions(+), 371 deletions(-)
create mode 100644 arch/mips/kernel/topology.c
create mode 100644 arch/um/os-Linux/execvp.c
create mode 100644 include/asm-arm/mach/udc_pxa2xx.h
All seemed to go I then moved back to my branch and pulled from master...
| Dec 1, 3:06 am 2006 |
| Linus Torvalds | Re: Resolving conflicts
Hmm. That doesn't look like a conflict. If it had a real conflict, I'd
have expected to see it mentioned in that diff..
This may be a stupid question, but if you haven't actually ever needed to
do any file-level merges before, this may be the first time you've
actually had the external 3-way "merge" program called, and that's one of
the few things that git still depends on _external_ programs for. And if
that program is broken or missing, you'd get bubkis.
(This is hopefully getting fi...
| Dec 1, 3:39 am 2006 |
| Linus Torvalds | Re: Resolving conflicts
Side note: the historically more common failure was to not have a merge
program at all, but exactly because that was common, we check for that and
complain about it. So that's not it for you - you do have a 'merge'
program somewhere that git found.
But if it returns the wrong error code, or doesn't do anything at all (ie
you have "merge", but it's not the 3-way merge we expect, or it doesn't
take the "-L" argument we use, or it's simply buggy) then that might
explain the behaviour you r...
| Dec 1, 3:53 am 2006 |
| Wink Saville | Re: Resolving conflicts
Earlier had a problem with git wanting merge but didn't have it and
couldn't figure out which package it was in Ubuntu:( So I symlinked merge
to kdiff3 which worked at the time:
wink@winkc2d1:~/linux/linux-2.6$ ls -al /usr/bin/merge
lrwxrwxrwx 1 root root 6 2006-11-17 19:24 /usr/bin/merge -> kdiff3
But doesn't/didn't work this time.
I tried "git diff --ours"
wink@winkc2d1:~/linux/linux-2.6$ git diff --ours
* Unmerged path kernel/fork.c
diff --git a/kernel/fork.c b/kernel/fork.c
* Unme...
| Dec 1, 3:52 am 2006 |
| Linus Torvalds | Re: Resolving conflicts
[ Tangentially related.. ]
Btw, what's the status of the xdl_merge() thing in "pu"?
It would be lovely if this could be one less thing we ever need to worry
about, just because we just do it ourselves. But quite frankly, I've never
looked at the RCS merge logic, so while I peeked at the xdl_merge patch
itself, I have absolutely zero way of judging it.
But the patch in "pu" to make merge-recursive use it looks pretty, and
removes more lines than it adds, and the xdl_merge() code itself _...
| Dec 2, 12:30 am 2006 |
| Linus Torvalds | Re: Resolving conflicts
Ahh. I'm pretty sure that is it.
No, kdiff3 probably doesn't have the same semantics, so better get the
"real" merge. It's almost certainly in the rcs package, so "emerge rcs"
should do it.
Or whatever system Ubuntu uses.
Linus
-
| Dec 1, 3:57 am 2006 |
| Linus Torvalds | Re: Resolving conflicts
..and just to be safe, remove the symlink first, so that you don't end up
overwriting the "kdiff3" binary by mistake when you install the real
"merge". Not that I think emerge is quite that stupid a package manager,
but anyway..
Linus
-
| Dec 1, 4:00 am 2006 |
| Wink Saville | Re: Resolving conflicts
Ubuntu is debian based and I use Synaptic GUI, a front end to apt-get. My earlier problem
was I couldn't find which package "merge" was in. But now I just figured it out by going
to debian.org and using "Search the contents of packages" for "merge". Turns out "merge"
is in devel/rcs which of course the whole world knows, unless your a neophyte like me:)
Any way after getting the real merge, I reverted the first pull and re-did it and all was well:
wink@winkc2d1:~/linux/linux-2.6$ git-checkout -f
...
| Dec 1, 4:22 am 2006 |
| Alan Chandler | Re: Resolving conflicts
I'm actually using Debian Unstable and basically use the git-core package. Its
at version 1.4.4.1 - so right up to date, and of course resolves all
dependencies automatically.
Doesn't Ubuntu have git-core in its repository?
--
Alan Chandler
http://www.chandlerfamily.org.uk
-
| Dec 1, 7:47 pm 2006 |
| Wink Saville | Re: Resolving conflicts
It was an older version, so I started at the source.
W
-
| Dec 1, 11:04 pm 2006 |
| Alan Chandler | Re: Resolving conflicts
Ubuntu is a Debian based. I think it uses Synaptic as its package manager gui
with the standard Debian apt-xxx tools underneath.
--
Alan Chandler
http://www.chandlerfamily.org.uk
-
| Dec 1, 4:13 am 2006 |
| Alan Chandler | Re: Resolving conflicts
On Friday 01 December 2006 07:06, Wink Saville wrote:
I am not the worlds expert in this, but since most seem to be in bed I'll
attempt to answer you
These show that these two files had some conflicts in the contents from the
kernel and your local branch
Take a look in these two files - you should see conflict markers of the form
<<<<<<<<<<<<<<<<
some content
================
which is the contents that failed from your side and the new ve...
| Dec 1, 3:30 am 2006 |
| Wink Saville | Re: Resolving conflicts
That's what I thought but there isn't any "<<<<<" and git-diff also seems
to indicate no differences:
wink@winkc2d1:~/linux/linux-2.6$ git-diff kernel/fork.c
diff --cc kernel/fork.c
index d74b4a5,8cdd3e7..0000000
--- a/kernel/fork.c
+++ b/kernel/fork.c
wink@winkc2d1:~/linux/linux-2.6$
wink@winkc2d1:~/linux/linux-2.6$ git-diff kernel/spinlock.c
diff --cc kernel/spinlock.c
index f4d1718,2c6c2bf..0000000
--- a/kernel/spinlock.c
+++ b/kernel/spinlock.c
wink@winkc2d1:~/linux/l...
| Dec 1, 3:41 am 2006 |
| Alan Chandler | Re: Resolving conflicts
This is at the limit of my understanding, but perhaps file permission problems
could have been the cause (was also thinking white space - but to my
recollection is that that DOES cause resolution markers)
I think you'll have to wait for experts from the list to comment.
--
Alan Chandler
http://www.chandlerfamily.org.uk
-
| Dec 1, 4:10 am 2006 |
| Wink Saville | How-to revert a locally modified file
Hello,
I searched the net and couldn't find the answer to how to revert a
file to its "pre-modified" state.
I did see in the 0.99.7 To Do:
* Perhaps a tool to revert a single file to pre-modification
state? git-cat-file blob `git-ls-files | grep foo` >foo or
git-cat-file blob `git-ls-tree HEAD foo` >foo? What should
the command be called? git-revert is taken so is
git-checkout.
Did such a command come to be?
Thanks,
Wink Saville
-
| Dec 1, 1:23 am 2006 |
| Junio C Hamano | Re: How-to revert a locally modified file
commit 4aaa702794447d9b281dd22fe532fd61e02434e1
Author: Junio C Hamano <junkio@cox.net>
Date: Tue Oct 18 01:29:27 2005 -0700
git-checkout: revert specific paths to either index or a given tree-ish.
When extra paths arguments are given, git-checkout reverts only those
paths to either the version recorded in the index or the version
recorded in the given tree-ish.
This has been on the TODO list for quite a while.
Signed-off-by: Junio C Hamano <...
| Dec 1, 1:51 am 2006 |
| Wink Saville | Re: How-to revert a locally modified file
FYI the above seems more obvious then what's in the man page:
"It updates the named paths in the working tree from the
index file (i.e. it runs git-checkout-index -f -u)."
But for me saying something like;
"It reverts the paths in the working tree to the most recent version stored in git."
would even be better. It may not be as precise as the current sentence,
but more obvious to this neophyte. Finally, in the EXAMPLES you
might add another example of reverting a "modified the file" as
w...
| Dec 1, 2:20 am 2006 |
| Juergen Ruehle | Re: Diffs from CVS keyword expansion
Jon Smirl writes:
> Anyone have a nice script for suppressing diffs caused by CVS keyword
> expansion when someone checked the kernel sources into CVS?
I usually just say (with GNU diff)
diff -I $$ ...
which is crude, but should be enough to get rid of the hunks listed by
you.
You might also want -x CVS if you have the metadata files.
-
| Dec 1, 3:06 am 2006 |
| Linus Torvalds | Re: Diffs from CVS keyword expansion
Also, if you are actually _using_ CVS to check it out, use
cvs co -ko
I think, to not check out with keyword expansion at all.
(Also usable with "cvs diff -ko", I think)
Linus
PS. Clueless user alert: I have happily not used CVS in years and years,
and I might remember that all wrong.
-
| Dec 1, 3:44 am 2006 |
| Jon Smirl | Re: Diffs from CVS keyword expansion
I don't have the original CVS, just a tarball snapshot with the
keywords expanded.
I'm working with the Freescale iMX21 and the Linux port for it has
never be added to the mainline kernel. I am extracting bits and pieces
--
Jon Smirl
jonsmirl@gmail.com
-
| Dec 1, 11:33 am 2006 |
| Daniel Barkalow | Re: [RFC] git-add update with all-0 object
My position on this subject is that "index" is a good name, but that
description is a terrible description, and "index" is a word that needs a
good description in context. If we just said up front:
Git's "index" is a staging area that you use to prepare commits. It maps
filenames to content. It allows git to remember changes you want to put
into the next commit while you do more work. For normal commits, it is
not necessary to use the index, but it is very helpful for complicated
commi...
| Dec 1, 4:10 am 2006 |
| Andy Parkins | Re: [RFC] git-add update with all-0 object
If we need to explain what "index" means in the context of diff then it's not
a good name :-)
An index /everywhere else/ is a lookup table. topic->page number;
author->book title. record id->byte position. There is never any content in
an index, indices just point at content.
I imagine that's how git's index got it's name. (I'm only guessing as I've
not looked at what's actually inside git's "index"). Here's my guess:
git update-index file1 hashes file1, stores it somewhere ...
| Dec 1, 5:37 am 2006 |
| Linus Torvalds | Re: [RFC] git-add update with all-0 object
Hey, it was originally called "cache".
I don't care _what_ it's called, I just want people knowing about it,
because hiding it will just cripple git (ie at the very least, when you
hit a merge conflict, you really do want to to understand it if you ever
want to go the the "next level").
If people are more comfortable just calling it the "staging area", and
Yes.
And even "git diff" isn't really a problem once you understand the staging
area. If people feel worried, let them use "gi...
| Dec 1, 3:10 am 2006 |
| Junio C Hamano | Re: [RFC] git-add update with all-0 object
All good points. The only slight worry I have is that just
moving EXAMPLE up deviates from the traditional UNIX manpage
order of presenting information.
I think the plumbing manuals can (and probably should) stay as
the technical manual for Porcelain writers. "git diff", "git
add" and friends that are clearly Porcelain should talk about
what it does in the terms of end user operation in the
DESCRIPTION section and puts less stress on how things work
behind the scene in technical terms. For ex...
| Dec 1, 2:20 am 2006 |
| Shawn Pearce | Re: [PATCH 0/2] Making "git commit" to mean "git commit -a".
Actually git-gui shows the index, but not quite as well as diff
and friends would.
But based on this thread I had a major realization: git-gui is
totally wrong in how it displays files (and therefore gitool is
too!). I'm going to rewrite that part of git-gui's UI, hopefully
early next week.
Linus is right: To deny the index is to deny git itself. Trying to
hide part of the index in git-gui is just wrong and makes things
like merge conflict resolutions harder, not easier.
--
Shawn.
-
...
| Dec 1, 2:27 pm 2006 |
| Andreas Ericsson | Re: git and bzr
More modern git (pull'ed 10 minutes ago) has this, at least when cut
from Documentation/git-diff.txt:
---%<---%<---%<---
SYNOPSIS
--------
'git-diff' [ --diff-options ] <tree-ish>{0,2} [<path>...]
DESCRIPTION
-----------
Show changes between two trees, a tree and the working tree, a
tree and the index file, or the index file and the working tree.
The combination of what is compared with what is determined by
the number of trees given to the command.
* When no <tree...
| Dec 1, 5:55 am 2006 |
| Andreas Ericsson | Re: [PATCH 0/2] Making "git commit" to mean "git commit -a".
I'm not so sure about that. I came from CVS / SVN, although I've fiddled
quite a bit with other scm's as well. The two-step commit process of git
didn't terrify me at all, and I had used git at least a month before I
joined the mailing-list and found out that there's this thing called an
"index". I knew about it before, since back then (June or July 2005)
there was only git-update-index to mark things to commit. I just didn't
worry about it but expected the scm to tell me if I was about to bre...
| Dec 1, 4:44 am 2006 |
| previous day | today | next day |
|---|---|---|
| October 31, 2006 | December 1, 2006 | December 2, 2006 |
| Tarkan Erimer | Re: Dual-Licensing Linux Kernel with GPL V2 and GPL V3 |
| Andi Kleen | [PATCH x86] [0/16] Various i386/x86-64 changes |
| Vladislav Bolkhovitin | Re: Integration of SCST in the mainstream Linux kernel |
| Pavel Roskin | ndiswrapper and GPL-only symbols redux |
git: | |
| Gerrit Renker | [PATCH 27/37] dccp: Integration of dynamic feature activation - part 2 (server side) |
| Natalie Protasevich | [BUG] New Kernel Bugs |
| Jarek Poplawski | [PATCH] pkt_sched: Destroy gen estimators under rtnl_lock(). |
| Arjan van de Ven | Re: [GIT]: Networking |
