* Linux 3.0.6
@ 2011-10-03 20:35 Greg KH
2011-10-03 20:36 ` Greg KH
` (2 more replies)
0 siblings, 3 replies; 6+ messages in thread
From: Greg KH @ 2011-10-03 20:35 UTC (permalink / raw)
To: linux-kernel, Andrew Morton, torvalds, stable; +Cc: lwn
[-- Attachment #1: Type: text/plain, Size: 770 bytes --]
I'm announcing the release of the 3.0.6 kernel.
There was a build error in the radeon driver of the 3.0.5 kernel, so
this update is only needed if you have problems building that kernel.
The updated 3.0.y git tree can be found at (NOTE THE ADDRESS CHANGE):
git://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable.git
and can be browsed at the normal kernel.org git web browser:
http://git.kernel.org/?p=linux/kernel/git/stable/linux-stable.git;a=summary
thanks,
greg k-h
------------
Makefile | 2 +-
drivers/gpu/drm/radeon/r100.c | 4 ++--
2 files changed, 3 insertions(+), 3 deletions(-)
Dave Airlie (1):
Revert "drm/radeon/kms: fix typo in r100_blit_copy"
Greg Kroah-Hartman (1):
Linux 3.0.6
[-- Attachment #2: Type: application/pgp-signature, Size: 836 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread* Re: Linux 3.0.6 2011-10-03 20:35 Linux 3.0.6 Greg KH @ 2011-10-03 20:36 ` Greg KH 2011-10-03 21:11 ` Thomas Gleixner 2011-10-15 11:56 ` Harald Dunkel 2 siblings, 0 replies; 6+ messages in thread From: Greg KH @ 2011-10-03 20:36 UTC (permalink / raw) To: linux-kernel, Andrew Morton, torvalds, stable, lwn [-- Attachment #1.1: Type: text/plain, Size: 130 bytes --] Here is the 3.0.6 incremental patch, to be applied on top of 3.0.5, signed with my stable kernel signing key. thanks, greg k-h [-- Attachment #1.2: patch-3.0.5-6 --] [-- Type: text/plain, Size: 913 bytes --] diff --git a/Makefile b/Makefile index eeff5df..7767a64 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ VERSION = 3 PATCHLEVEL = 0 -SUBLEVEL = 5 +SUBLEVEL = 6 EXTRAVERSION = NAME = Sneaky Weasel diff --git a/drivers/gpu/drm/radeon/r100.c b/drivers/gpu/drm/radeon/r100.c index 830e1f1..7fcdbbb 100644 --- a/drivers/gpu/drm/radeon/r100.c +++ b/drivers/gpu/drm/radeon/r100.c @@ -773,8 +773,8 @@ int r100_copy_blit(struct radeon_device *rdev, radeon_ring_write(rdev, (0x1fff) | (0x1fff << 16)); radeon_ring_write(rdev, 0); radeon_ring_write(rdev, (0x1fff) | (0x1fff << 16)); - radeon_ring_write(rdev, num_pages); - radeon_ring_write(rdev, num_pages); + radeon_ring_write(rdev, num_gpu_pages); + radeon_ring_write(rdev, num_gpu_pages); radeon_ring_write(rdev, cur_pages | (stride_pixels << 16)); } radeon_ring_write(rdev, PACKET0(RADEON_DSTCACHE_CTLSTAT, 0)); [-- Attachment #2: Type: application/pgp-signature, Size: 836 bytes --] ^ permalink raw reply related [flat|nested] 6+ messages in thread
* Re: Linux 3.0.6 2011-10-03 20:35 Linux 3.0.6 Greg KH 2011-10-03 20:36 ` Greg KH @ 2011-10-03 21:11 ` Thomas Gleixner 2011-10-03 21:26 ` Greg KH 2011-10-15 11:56 ` Harald Dunkel 2 siblings, 1 reply; 6+ messages in thread From: Thomas Gleixner @ 2011-10-03 21:11 UTC (permalink / raw) To: Greg KH; +Cc: linux-kernel, Andrew Morton, torvalds, stable, lwn On Mon, 3 Oct 2011, Greg KH wrote: > I'm announcing the release of the 3.0.6 kernel. > > There was a build error in the radeon driver of the 3.0.5 kernel, so > this update is only needed if you have problems building that kernel. > > The updated 3.0.y git tree can be found at (NOTE THE ADDRESS CHANGE): > git://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable.git That's missing the branch git://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable.git 3.0.y and while I can see the reason to make branches instead of separate trees, it's a nightmare when you want to get the 3.0.y tags because git insists on downloading the world and some more :(. It's just a one time thing, but nevertheless anoying as hell. Thanks, tglx ^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: Linux 3.0.6 2011-10-03 21:11 ` Thomas Gleixner @ 2011-10-03 21:26 ` Greg KH 0 siblings, 0 replies; 6+ messages in thread From: Greg KH @ 2011-10-03 21:26 UTC (permalink / raw) To: Thomas Gleixner; +Cc: linux-kernel, Andrew Morton, torvalds, stable, lwn On Mon, Oct 03, 2011 at 11:11:12PM +0200, Thomas Gleixner wrote: > On Mon, 3 Oct 2011, Greg KH wrote: > > > I'm announcing the release of the 3.0.6 kernel. > > > > There was a build error in the radeon driver of the 3.0.5 kernel, so > > this update is only needed if you have problems building that kernel. > > > > The updated 3.0.y git tree can be found at (NOTE THE ADDRESS CHANGE): > > git://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable.git > > That's missing the branch > > git://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable.git 3.0.y Oops, sorry, you are right. > and while I can see the reason to make branches instead of separate > trees, it's a nightmare when you want to get the 3.0.y tags because > git insists on downloading the world and some more :(. It's just a one > time thing, but nevertheless anoying as hell. Yeah, but now we will not have a ton of different directories, one per minor release, as it seemed that everyone ended up using the merged tree anyway. thanks, greg k-h ^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: Linux 3.0.6 2011-10-03 20:35 Linux 3.0.6 Greg KH 2011-10-03 20:36 ` Greg KH 2011-10-03 21:11 ` Thomas Gleixner @ 2011-10-15 11:56 ` Harald Dunkel 2011-10-15 14:28 ` Harald Dunkel 2 siblings, 1 reply; 6+ messages in thread From: Harald Dunkel @ 2011-10-15 11:56 UTC (permalink / raw) To: Greg KH; +Cc: Kernel Mailing List -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 On 10/03/11 22:35, Greg KH wrote: > I'm announcing the release of the 3.0.6 kernel. > > There was a build error in the radeon driver of the 3.0.5 kernel, so this update is only needed if you have problems building that kernel. > > The updated 3.0.y git tree can be found at (NOTE THE ADDRESS CHANGE): git://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable.git This seems to be broken. I get fatal: http://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-3.0.y.git/info/refs not found: did you run git update-server-info on the server? Regards Harri -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.11 (GNU/Linux) iEYEARECAAYFAk6ZdN4ACgkQUTlbRTxpHjedbACbBtAx/8j0INcVHRNthwGXX6FF YxcAnjcOx3MeDYBv2cJ91yuVaJ4Y7nCs =rfQb -----END PGP SIGNATURE----- ^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: Linux 3.0.6 2011-10-15 11:56 ` Harald Dunkel @ 2011-10-15 14:28 ` Harald Dunkel 0 siblings, 0 replies; 6+ messages in thread From: Harald Dunkel @ 2011-10-15 14:28 UTC (permalink / raw) To: Greg KH; +Cc: Kernel Mailing List -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 On 10/15/11 13:56, Harald Dunkel wrote: > On 10/03/11 22:35, Greg KH wrote: >> I'm announcing the release of the 3.0.6 kernel. > >> There was a build error in the radeon driver of the 3.0.5 kernel, so this update is only needed if you have problems building that kernel. > >> The updated 3.0.y git tree can be found at (NOTE THE ADDRESS CHANGE): git://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable.git > > This seems to be broken. I get > > fatal: http://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-3.0.y.git/info/refs not found: did you run git update-server-info on the server? > Sorry folks, I was too blind to see. Regards Harri -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.11 (GNU/Linux) iEYEARECAAYFAk6ZmIIACgkQUTlbRTxpHjcFigCfXBzhwbMzoMj9YV80vnL0El/o /TIAmwXBrQtlrtaTMOuAdKvH3IvrFLIN =2ECf -----END PGP SIGNATURE----- ^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2011-10-15 14:28 UTC | newest] Thread overview: 6+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2011-10-03 20:35 Linux 3.0.6 Greg KH 2011-10-03 20:36 ` Greg KH 2011-10-03 21:11 ` Thomas Gleixner 2011-10-03 21:26 ` Greg KH 2011-10-15 11:56 ` Harald Dunkel 2011-10-15 14:28 ` Harald Dunkel
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox