11 Jan, 2006
1 commit
-
Small cleanups for drivers/atm/zatm.c
Get rid of unneeded cast of kmalloc() return value.
Small whitespace/CodingStyle/formatting cleanup (since I was in there anyway).Signed-off-by: Jesper Juhl
Signed-off-by: Andrew Morton
Signed-off-by: David S. Miller
09 Jan, 2006
1 commit
-
Fix an uninitialised variable warning in the atm nicstar driver.
Signed-off-by: David Howells
Signed-off-by: Andrew Morton
Signed-off-by: Linus Torvalds
16 Dec, 2005
1 commit
-
Signed-off-by: Al Viro
Signed-off-by: Linus Torvalds
30 Nov, 2005
6 commits
-
Signed-off-by: Chas Williams
Signed-off-by: David S. Miller -
atm_dev_deregister() removes device from atm_dev list immediately to
prevent operations on a phantom device. Decision to free device based
only on ->refcnt now. Remove shutdown_atm_dev() use atm_dev_deregister()
instead. atm_dev_deregister() also asynchronously releases all vccs
related to device.Signed-off-by: Stanislaw Gruszka
Signed-off-by: Chas Williams
Signed-off-by: David S. Miller -
Signed-off-by: Mitchell Blank Jr
Signed-off-by: Chas Williams
Signed-off-by: David S. Miller -
From: Jan Pieter
Signed-off-by: Chas Williams
Signed-off-by: David S. Miller -
Signed-off-by: Dave Jones
Signed-off-by: Chas Williams
Signed-off-by: David S. Miller -
Signed-off-by: Mitchell Blank Jr
Signed-off-by: Chas Williams
Signed-off-by: David S. Miller
11 Nov, 2005
1 commit
-
Signed-off-by: Dave Jones
Signed-off-by: Chas Williams
Signed-off-by: David S. Miller
09 Oct, 2005
1 commit
-
- added typedef unsigned int __nocast gfp_t;
- replaced __nocast uses for gfp flags with gfp_t - it gives exactly
the same warnings as far as sparse is concerned, doesn't change
generated code (from gcc point of view we replaced unsigned int with
typedef) and documents what's going on far better.Signed-off-by: Al Viro
Signed-off-by: Linus Torvalds
05 Oct, 2005
1 commit
-
Fix implicit nocast warnings in atm code:
net/atm/atm_misc.c:35:44: warning: implicit cast to nocast type
drivers/atm/fore200e.c:183:33: warning: implicit cast to nocast typeAlso use kzalloc() instead of kmalloc().
Signed-off-by: Randy Dunlap
Signed-off-by: David S. Miller
10 Sep, 2005
1 commit
-
Clean up timer initialization by introducing DEFINE_TIMER a'la
DEFINE_SPINLOCK. Build and boot-tested on x86. A similar patch has been
been in the -RT tree for some time.Signed-off-by: Ingo Molnar
Signed-off-by: Andrew Morton
Signed-off-by: Linus Torvalds
03 Sep, 2005
1 commit
-
Fixing breakage from [NET]: Kill skb->list - original was
assign vcc
do a bunch of stuff using ZATM_VCC(vcc)->pool as common subexpression
Now we do
int pos = ZATM_VCC(vcc)->pool;
assign vcc
do a bunch of stuff
even though vcc is not even initialized when we enter that block...Signed-off-by: Al Viro
Signed-off-by: David S. Miller
30 Aug, 2005
2 commits
-
Reduces skb size by 8 bytes on 64-bit.
Signed-off-by: Patrick McHardy
Signed-off-by: David S. Miller -
Remove the "list" member of struct sk_buff, as it is entirely
redundant. All SKB list removal callers know which list the
SKB is on, so storing this in sk_buff does nothing other than
taking up some space.Two tricky bits were SCTP, which I took care of, and two ATM
drivers which Francois Romieu fixed
up.Signed-off-by: David S. Miller
Signed-off-by: Francois Romieu
21 Jul, 2005
1 commit
-
mailbox converted to pci_alloc_consistent()
- request_region() is not needed: zatm_init_one() issues
pci_request_regions();
- the warning related to kfree(zatm_dev->mbx_start) disappears;Compiled with i386 and sparc64 as target.
Signed-off-by: Francois Romieu
Signed-off-by: David S. Miller
20 Jul, 2005
5 commits
-
Signed-off-by: Victor Fusco
Signed-off-by: Domen Puncer
Signed-off-by: Chas Williams
Signed-off-by: David S. Miller -
Signed-off-by: Victor Fusco
Signed-off-by: Domen Puncer
Signed-off-by: Chas Williams
Signed-off-by: David S. Miller -
Signed-off-by: Olaf Hering
Signed-off-by: Chas Williams
Signed-off-by: David S. Miller -
Signed-off-by: Marcelo Feitoza Parisi
Signed-off-by: Domen Puncer
Signed-off-by: Chas Williams
Signed-off-by: David S. Miller -
Signed-off-by: Chas Williams
Signed-off-by: David S. Miller
03 Jun, 2005
2 commits
-
Signed-off-by: Jesper Juhl
Signed-off-by: Chas Williams
Signed-off-by: David S. Miller -
Signed-off-by: Jan Beulich
Signed-off-by: Chas Williams
Signed-off-by: David S. Miller
25 Apr, 2005
3 commits
-
From: Panagiotis Issaris
In the ENI155P device driver in six possible failure cases the requested
irq is not being released.In three of the above possible failure cases additionally there seems to
be a memory leak.Signed-off-by: Andrew Morton
Signed-off-by: David S. Miller -
Signed-off-by: Chas Williams
Signed-off-by: David S. Miller -
Signed-off-by: Tobias Klauser
Signed-off-by: Domen Puncer
Signed-off-by: Chas Williams
Signed-off-by: David S. Miller
17 Apr, 2005
1 commit
-
Initial git repository build. I'm not bothering with the full history,
even though we have it. We can create a separate "historical" git
archive of that later if we want to, and in the meantime it's about
3.2GB when imported into git - space that would just make the early
git days unnecessarily complicated, when we don't have a lot of good
infrastructure for it.Let it rip!