Pull request
The following changes since commit 5b825ed22b02691e39774e8b2a077d1807969ec7:
Linus Torvalds (1): Merge git://git.kernel.org/.../davem/net-2.6 are available in the git repository at: git://git.kernel.org/pub/scm/linux/kernel/git/avi/kvm.git virtio Anthony Liguori (7): virtio: Export vring functions for modules to use virtio: Put the virtio under the virtualization menu virtio:pci-device Fix vring_init/vring_size to take unsigned long Make virtio modules GPL Make virtio_pci license be GPL2+ Use Qumranet donated PCI vendor/device IDs Arjan van de Ven (2): show being-loaded/being-unloaded indicator for modules in oopses track and print last unloaded module in the oops trace Balaji Rao (1): Reboot Implemented Christian Borntraeger (1): virtnet: remove double ether_setup Dor Laor (3): Parametrize the napi_weight for virtio receive queue. Handle module unload Add the device release function. Update all status fields on driver unload Glauber de Oliveira Costa (16): introduce vcpu struct adapt lguest launcher to per-cpuness initialize vcpu per-cpu run guest make write() operation smp aware make hypercalls use the vcpu struct per-vcpu lguest timers per-vcpu interrupt processing. map_switcher_in_guest() per-vcpu make emulate_insn receive a vcpu struct. make registers per-vcpu replace lguest_arch with lg_cpu_arch. per-vcpu lguest task management makes special fields be per-vcpu make pending notifications per-vcpu per-vcpu lguest pgdir management Rusty Russell (14): virtio:simplify-config-mechanism virtio: An entropy device, as suggested by hpa. misc:discarded_kernel_test module:wait-for-dependencies virtio:vring-kick-when-empty virtio:explicit-callback-disable virtio:net-flush-queue-on-init virtio:net-fix-xmit-skb-free-real virtio:more-interrupt-suppression misc:aio-negative-offset misc:aio-partial-write lguest:reboot-fix module:add-list-early misc:sg_chain-dont-hit-prev Documentation/lguest/lguest.c | 285 ++++++++++++++++------ arch/x86/lguest/boot.c | 11 +- drivers/Kconfig | 2 - drivers/block/Kconfig | 3 +- drivers/block/virtio_blk.c | 40 ++-- drivers/char/hw_random/Kconfig | 9 + drivers/char/hw_random/Makefile | 1 + drivers/char/hw_random/virtio-rng.c | 124 ++++++++++ drivers/char/virtio_console.c | 4 +- drivers/kvm/Kconfig | 1 + drivers/lguest/core.c | 26 ++- drivers/lguest/hypercalls.c | 68 +++--- drivers/lguest/interrupts_and_traps.c | 121 +++++----- drivers/lguest/lg.h | 118 +++++---- drivers/lguest/lguest_device.c | 136 ++++++----- drivers/lguest/lguest_user.c | 138 +++++++---- drivers/lguest/page_tables.c | 75 +++--- drivers/lguest/segments.c | 42 ++-- drivers/lguest/x86/core.c | 96 ++++---- drivers/net/Kconfig | 3 +- drivers/net/virtio_net.c | 82 ++++--- drivers/virtio/Kconfig | 16 ++ drivers/virtio/Makefile | 1 + drivers/virtio/virtio.c | 56 +---- drivers/virtio/virtio_pci.c | 423 +++++++++++++++++++++++++++++++++ drivers/virtio/virtio_ring.c | 37 +++- fs/aio.c | 11 + include/asm-x86/lguest.h | 2 +- include/asm-x86/lguest_hcall.h | 6 +- include/linux/lguest_launcher.h | 9 +- include/linux/scatterlist.h | 4 +- include/linux/virtio.h | 11 +- include/linux/virtio_blk.h | 22 +- include/linux/virtio_config.h | 100 ++++---- include/linux/virtio_net.h | 11 +- include/linux/virtio_pci.h | 52 ++++ include/linux/virtio_ring.h | 14 +- include/linux/virtio_rng.h | 8 + kernel/extable.c | 3 +- kernel/module.c | 93 +++++--- net/9p/trans_virtio.c | 8 +- 41 files changed, 1600 insertions(+), 672 deletions(-) create mode 100644 drivers/char/hw_random/virtio-rng.c create mode 100644 drivers/virtio/virtio_pci.c create mode 100644 include/linux/virtio_pci.h create mode 100644 include/linux/virtio_rng.h -- Soren Hansen Ubuntu Server Team http://www.ubuntu.com/ -- kernel-team mailing list kernel-team@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/kernel-team |
Pull request
Soren Hansen wrote:
> The following changes since commit 5b825ed22b02691e39774e8b2a077d1807969ec7: > Linus Torvalds (1): > Merge git://git.kernel.org/.../davem/net-2.6 > > are available in the git repository at: > > git://git.kernel.org/pub/scm/linux/kernel/git/avi/kvm.git virtio > > Anthony Liguori (7): > virtio: Export vring functions for modules to use > virtio: Put the virtio under the virtualization menu > virtio:pci-device > Fix vring_init/vring_size to take unsigned long > Make virtio modules GPL > Make virtio_pci license be GPL2+ > Use Qumranet donated PCI vendor/device IDs > > Arjan van de Ven (2): > show being-loaded/being-unloaded indicator for modules in oopses > track and print last unloaded module in the oops trace > > Balaji Rao (1): > Reboot Implemented > > Christian Borntraeger (1): > virtnet: remove double ether_setup > > Dor Laor (3): > Parametrize the napi_weight for virtio receive queue. > Handle module unload Add the device release function. > Update all status fields on driver unload > > Glauber de Oliveira Costa (16): > introduce vcpu struct > adapt lguest launcher to per-cpuness > initialize vcpu > per-cpu run guest > make write() operation smp aware > make hypercalls use the vcpu struct > per-vcpu lguest timers > per-vcpu interrupt processing. > map_switcher_in_guest() per-vcpu > make emulate_insn receive a vcpu struct. > make registers per-vcpu > replace lguest_arch with lg_cpu_arch. > per-vcpu lguest task management > makes special fields be per-vcpu > make pending notifications per-vcpu > per-vcpu lguest pgdir management > > Rusty Russell (14): > virtio:simplify-config-mechanism > virtio: An entropy device, as suggested by hpa. > misc:discarded_kernel_test > module:wait-for-dependencies > virtio:vring-kick-when-empty > virtio:explicit-callback-disable > virtio:net-flush-queue-on-init > virtio:net-fix-xmit-skb-free-real > virtio:more-interrupt-suppression > misc:aio-negative-offset > misc:aio-partial-write > lguest:reboot-fix > module:add-list-early > misc:sg_chain-dont-hit-prev > > Documentation/lguest/lguest.c | 285 ++++++++++++++++------ > arch/x86/lguest/boot.c | 11 +- > drivers/Kconfig | 2 - > drivers/block/Kconfig | 3 +- > drivers/block/virtio_blk.c | 40 ++-- > drivers/char/hw_random/Kconfig | 9 + > drivers/char/hw_random/Makefile | 1 + > drivers/char/hw_random/virtio-rng.c | 124 ++++++++++ > drivers/char/virtio_console.c | 4 +- > drivers/kvm/Kconfig | 1 + > drivers/lguest/core.c | 26 ++- > drivers/lguest/hypercalls.c | 68 +++--- > drivers/lguest/interrupts_and_traps.c | 121 +++++----- > drivers/lguest/lg.h | 118 +++++---- > drivers/lguest/lguest_device.c | 136 ++++++----- > drivers/lguest/lguest_user.c | 138 +++++++---- > drivers/lguest/page_tables.c | 75 +++--- > drivers/lguest/segments.c | 42 ++-- > drivers/lguest/x86/core.c | 96 ++++---- > drivers/net/Kconfig | 3 +- > drivers/net/virtio_net.c | 82 ++++--- > drivers/virtio/Kconfig | 16 ++ > drivers/virtio/Makefile | 1 + > drivers/virtio/virtio.c | 56 +---- > drivers/virtio/virtio_pci.c | 423 +++++++++++++++++++++++++++++++++ > drivers/virtio/virtio_ring.c | 37 +++- > fs/aio.c | 11 + > include/asm-x86/lguest.h | 2 +- > include/asm-x86/lguest_hcall.h | 6 +- > include/linux/lguest_launcher.h | 9 +- > include/linux/scatterlist.h | 4 +- > include/linux/virtio.h | 11 +- > include/linux/virtio_blk.h | 22 +- > include/linux/virtio_config.h | 100 ++++---- > include/linux/virtio_net.h | 11 +- > include/linux/virtio_pci.h | 52 ++++ > include/linux/virtio_ring.h | 14 +- > include/linux/virtio_rng.h | 8 + > kernel/extable.c | 3 +- > kernel/module.c | 93 +++++--- > net/9p/trans_virtio.c | 8 +- > 41 files changed, 1600 insertions(+), 672 deletions(-) > create mode 100644 drivers/char/hw_random/virtio-rng.c > create mode 100644 drivers/virtio/virtio_pci.c > create mode 100644 include/linux/virtio_pci.h > create mode 100644 include/linux/virtio_rng.h > > Soren - what is the case for pulling these changes? Are they unlikely to make into 2.6.24 ? -- Tim Gardner tim.gardner@ubuntu.com -- kernel-team mailing list kernel-team@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/kernel-team |
Pull request
Hi Tim,
please pull from here: zinc:/srv/kernel.ubuntu.com/git/fabbione/ubuntu-hardy-lum.git/ commit 0cb6206c8225c93cd651381b3350c90341a046e0 Author: Fabio M. Di Nitto <fabbione@ubuntu.com> Date: Mon Jan 21 11:38:12 2008 +0100 UBUNTU: Update gspcav1 to 01.00.20 OriginalLocation: http://mxhaard.free.fr/download.html Bug: 177231 Signed-off-by: Fabio M. Di Nitto <fabbione@ubuntu.com> is the only commit. tested on amd64 -generic fixes problems with my webcam. Thanks Fabio -- I'm going to make him an offer he can't refuse. -- kernel-team mailing list kernel-team@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/kernel-team |
Pull request
Fabio M. Di Nitto wrote:
> Hi Tim, > > please pull from here: > > zinc:/srv/kernel.ubuntu.com/git/fabbione/ubuntu-hardy-lum.git/ > > commit 0cb6206c8225c93cd651381b3350c90341a046e0 > Author: Fabio M. Di Nitto <fabbione@ubuntu.com> > Date: Mon Jan 21 11:38:12 2008 +0100 > > UBUNTU: Update gspcav1 to 01.00.20 > OriginalLocation: http://mxhaard.free.fr/download.html > Bug: 177231 > > Signed-off-by: Fabio M. Di Nitto <fabbione@ubuntu.com> > > is the only commit. tested on amd64 -generic fixes problems with my > webcam. > > Thanks > Fabio > > -- > I'm going to make him an offer he can't refuse. > > pulled -- Tim Gardner tim.gardner@ubuntu.com -- kernel-team mailing list kernel-team@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/kernel-team |
Pull request
Hi Kernel team,
Please pull: The following changes since commit 08173e72d00313ad5b77a553ce65a9ed673dd3b8: Tim Gardner (1): UBUNTU: Add some Xen happiness. are available in the git repository at: git://kernel.ubuntu.com/abogani/ubuntu-hardy-rt.git master Alessio Igor Bogani (1): UBUNTU: rt: Synced with upstream, removed old kvm related patches and updated configurations files. Thanks. Ciao, Alessio P.s. Sorry for one big commit. -- kernel-team mailing list kernel-team@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/kernel-team |
Pull request
Alessio Igor Bogani wrote:
> Hi Kernel team, > > Please pull: > > The following changes since commit 08173e72d00313ad5b77a553ce65a9ed673dd3b8: > Tim Gardner (1): > UBUNTU: Add some Xen happiness. > > are available in the git repository at: > > git://kernel.ubuntu.com/abogani/ubuntu-hardy-rt.git master > > Alessio Igor Bogani (1): > UBUNTU: rt: Synced with upstream, removed old kvm related > patches and updated configurations files. > > Thanks. > > Ciao, > Alessio > > P.s. > Sorry for one big commit. > pulled. -- Tim Gardner tim.gardner@ubuntu.com -- kernel-team mailing list kernel-team@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/kernel-team |
Pull request
Hi,
Please consider pulling the following patches. The tree is almost unchanged from the patch posting with the exception of the addition of Roel's patch to fix a calculation in the logging code. Once these patches go in, I'll look into creating a follow-up patch as suggested by Christoph. There are no changes outside of the GFS2 code in this patch set, Steve. The following changes since commit 4a72ef9f7ad36ea0fb3b42f31b2b0c5b9871969a: Linus Torvalds (1): Merge branch 'pci_id_updates' of git://git.kernel.org/.../mchehab/v4l-dvb are found in the git repository at: git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-2.6-nmw.git Abhijith Das (1): [GFS2] gfs2_adjust_quota has broken unstuffing code Adrian Bunk (3): [GFS2] make gfs2_glock_hold() static [GFS2] gfs2/ops_file.c should #include "ops_inode.h" [GFS2] proper extern for gfs2/locking/dlm/mount.c:gdlm_ops Benjamin Marzinski (1): [GFS2] Invalidate cache at correct point Bob Peterson (13): [GFS2] Get rid of unneeded parameter in gfs2_rlist_alloc [GFS2] Fix debug inode printing [GFS2] Only do lo_incore_commit once [GFS2] Misc fixups [GFS2] Only wake the reclaim daemon if we need to [GFS2] Plug an unlikely leak [GFS2] Allocate gfs2_rgrpd from slab memory [GFS2] Combine rg_flags and rd_flags [GFS2] Get rid of gl_waiters2 [GFS2] Eliminate gl_req_bh [GFS2] Remove rgrp and glock version numbers [GFS2] Remove unused counters [GFS2] Faster gfs2_bitfit algorithm Christoph Hellwig (1): [GFS2] fix file_system_type leak on gfs2meta mount Cyrill Gorcunov (1): [GFS2] possible null pointer dereference fixup Denis Cheng (2): [GFS2] remove gfs2_dev_iops [GFS2] re-support special inode Josef Bacik (1): [GFS2] fix GFP_KERNEL misuses Julia Lawall (1): [GFS2] test for IS_ERR rather than 0 Marcin Slusarz (1): [GFS2] be*_add_cpu conversion Roel Kluin (1): [GFS2] fix assertion in log_refund() Steven Whitehouse (22): [GFS2] Speed up gfs2_write_alloc_required, deprecate gfs2_extent_map [GFS2] Streamline indirect pointer tree height calculation [GFS2] Move part of gfs2_block_map into a separate function [GFS2] Introduce array of buffers to struct metapath [GFS2] Add consts to various bits of rgrp.c [GFS2] Remove lm.[ch] and distribute content [GFS2] Shrink & rename di_depth [GFS2] Reduce inode size by merging fields [GFS2] Merge the rd_last_alloc_meta and rd_last_alloc_data fields [GFS2] Update gfs2_trans_add_unrevoke to accept extents [GFS2] Merge gfs2_alloc_meta and gfs2_alloc_data [GFS2] Add extent allocation to block allocator [GFS2] The case of the missing asterisk [GFS2] Add a function to interate over an extent [GFS2] Eliminate (almost) duplicate field from gfs2_inode [GFS2] Get inode buffer only once per block map call [GFS2] Fix bug where we called drop_bh incorrectly [GFS2] Fix a page lock / glock deadlock [GFS2] Allow bmap to allocate extents [GFS2] Need to ensure that sector_t is 64bits for GFS2 [GFS2] Remove drop of module ref where not needed [GFS2] Streamline quota lock/check for no-quota case akpm@linux-foundation.org (1): [GFS2] fs/gfs2/recovery.c: suppress warnings fs/gfs2/Kconfig | 2 +- fs/gfs2/Makefile | 2 +- fs/gfs2/acl.c | 6 +- fs/gfs2/bmap.c | 670 ++++++++++++++++++++++------------------ fs/gfs2/dir.c | 84 +++--- fs/gfs2/eattr.c | 58 ++-- fs/gfs2/glock.c | 188 +++++++----- fs/gfs2/glock.h | 14 +- fs/gfs2/glops.c | 10 +- fs/gfs2/incore.h | 40 +-- fs/gfs2/inode.c | 72 +++-- fs/gfs2/inode.h | 22 +- fs/gfs2/lm.c | 210 ------------- fs/gfs2/lm.h | 42 --- fs/gfs2/locking/dlm/lock.c | 7 +- fs/gfs2/locking/dlm/lock_dlm.h | 5 + fs/gfs2/locking/dlm/main.c | 2 - fs/gfs2/locking/dlm/sysfs.c | 2 - fs/gfs2/locking/dlm/thread.c | 10 +- fs/gfs2/locking/nolock/main.c | 2 +- fs/gfs2/log.c | 19 +- fs/gfs2/lops.c | 21 +- fs/gfs2/lops.h | 11 +- fs/gfs2/main.c | 10 + fs/gfs2/ops_address.c | 44 ++-- fs/gfs2/ops_dentry.c | 4 +- fs/gfs2/ops_export.c | 2 - fs/gfs2/ops_file.c | 37 ++- fs/gfs2/ops_fstype.c | 80 +++++- fs/gfs2/ops_inode.c | 42 +-- fs/gfs2/ops_inode.h | 1 - fs/gfs2/ops_super.c | 1 - fs/gfs2/quota.c | 74 ++--- fs/gfs2/quota.h | 17 + fs/gfs2/recovery.c | 15 +- fs/gfs2/rgrp.c | 370 ++++++++++++----------- fs/gfs2/rgrp.h | 8 +- fs/gfs2/super.c | 6 +- fs/gfs2/super.h | 1 + fs/gfs2/sys.c | 7 - fs/gfs2/trans.c | 25 +- fs/gfs2/trans.h | 2 +- fs/gfs2/util.c | 24 ++- fs/gfs2/util.h | 2 + include/linux/lm_interface.h | 10 + 45 files changed, 1150 insertions(+), 1131 deletions(-) delete mode 100644 fs/gfs2/lm.c delete mode 100644 fs/gfs2/lm.h |
Pull request
Hi Kernel Team,
Please pull: The following changes since commit 294d61f7b574d2909aec6017ab2333b26d6314c5: Tim Gardner (1): UBUNTU: Fix Xen Dom0/DomU bridging are available in the git repository at: git://kernel.ubuntu.com/abogani/ubuntu-hardy-rt.git master Alessio Igor Bogani (2): UBUNTU: rt: Fix mutex in the toshiba_acpi driver UBUNTU: rt: Updated configuration files debian/binary-custom.d/rt/config.amd64 | 16 ++++++------ debian/binary-custom.d/rt/config.i386 | 25 +++++++++---------- .../rt/patchset/1000-toshiba-mutex.patch | 14 +++++++++++ debian/binary-custom.d/rt/patchset/series | 1 + 4 files changed, 35 insertions(+), 21 deletions(-) create mode 100644 debian/binary-custom.d/rt/patchset/1000-toshiba-mutex.patch Thanks! Ciao, Alessio -- kernel-team mailing list kernel-team@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/kernel-team |
Pull request
Alessio Igor Bogani wrote:
> Hi Kernel Team, > > Please pull: > > The following changes since commit 294d61f7b574d2909aec6017ab2333b26d6314c5: > Tim Gardner (1): > UBUNTU: Fix Xen Dom0/DomU bridging > > are available in the git repository at: > > git://kernel.ubuntu.com/abogani/ubuntu-hardy-rt.git master > > Alessio Igor Bogani (2): > UBUNTU: rt: Fix mutex in the toshiba_acpi driver > UBUNTU: rt: Updated configuration files > > debian/binary-custom.d/rt/config.amd64 | 16 ++++++------ > debian/binary-custom.d/rt/config.i386 | 25 +++++++++---------- > .../rt/patchset/1000-toshiba-mutex.patch | 14 +++++++++++ > debian/binary-custom.d/rt/patchset/series | 1 + > 4 files changed, 35 insertions(+), 21 deletions(-) > create mode 100644 debian/binary-custom.d/rt/patchset/1000-toshiba-mutex.patch > > Thanks! > > Ciao, > Alessio > pulled. This may not appear until 8.04.1 -- Tim Gardner tim.gardner@ubuntu.com -- kernel-team mailing list kernel-team@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/kernel-team |
Pull request
Hi,
Please consider pulling the following bug fixes, Steve. ---------------------------------------------------------------------------- The following changes since commit 492c2e476eac010962850006c49df326919b284c: Linus Torvalds (1): Linux 2.6.26-rc2 are found in the git repository at: git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-2.6-fixes.git Andrew Price (1): [GFS2] Fix cast from unsigned int to s64 Bob Peterson (1): [GFS2] filesystem consistency error from do_strip Jean Delvare (1): [GFS2] Prefer strlcpy() over snprintf() fs/gfs2/glops.c | 2 +- fs/gfs2/incore.h | 1 + fs/gfs2/inode.c | 10 +++++----- fs/gfs2/meta_io.c | 6 ++++-- fs/gfs2/ops_fstype.c | 4 ++-- fs/gfs2/ops_super.c | 16 +++++++++------- fs/gfs2/rgrp.c | 2 +- 7 files changed, 23 insertions(+), 18 deletions(-) |
| All times are GMT. The time now is 04:59 PM. |
VBulletin, Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.
Content Relevant URLs by vBSEO ©2007, Crawlability, Inc.