Displaying 20 results from an estimated 481 matches for "58,6".
Did you mean:
53,6
2001 Nov 26
1
EXT3 crash: ext3_free_blocks: bit already cleared
...(pathconf, tune,read,rpc_blk)
The filesystem is RAID0 using LVM (1.0.1-rc4).
The disks are connected using fiber channel
(qlogic 2200, qlax00-4.27beta).
I was generating high load on my nfs server
that is using ext3 filesystems. I started to
get the following error:
EXT3-fs error (device lvm(58,6)): ext3_free_blocks: bit already cleared for bloc
k 290754
EXT3-fs error (device lvm(58,6)): ext3_free_blocks: bit already cleared for bloc
k 289980
EXT3-fs error (device lvm(58,6)): ext3_free_blocks: bit already cleared for bloc
k 289981
(Many more errors than this)
And then I lost that NFS fi...
2014 Feb 14
5
[LLVMdev] [llvm] r201432 - Remove myself as owner of libc++
...iewvc/llvm-project/llvm/trunk/CODE_OWNERS.TXT?rev=201432&r1=201431&r2=201432&view=diff
> ==============================================================================
> --- llvm/trunk/CODE_OWNERS.TXT (original)
> +++ llvm/trunk/CODE_OWNERS.TXT Fri Feb 14 15:09:01 2014
> @@ -58,9 +58,6 @@ N: James Grosbach
> E: grosbach at apple.com
> D: MC layer
>
> -N: Howard Hinnant
> -D: libc++
> -
I would like to volunteer as the code owner for libc++.
— Marshall
2015 Jul 28
3
[PATCH] virtio_mmio: add ACPI probing
...<graeme.gregory at linaro.org>
---
drivers/virtio/virtio_mmio.c | 10 ++++++++++
1 file changed, 10 insertions(+)
diff --git a/drivers/virtio/virtio_mmio.c b/drivers/virtio/virtio_mmio.c
index 10189b5..f499d9d 100644
--- a/drivers/virtio/virtio_mmio.c
+++ b/drivers/virtio/virtio_mmio.c
@@ -58,6 +58,7 @@
#define pr_fmt(fmt) "virtio-mmio: " fmt
+#include <linux/acpi.h>
#include <linux/highmem.h>
#include <linux/interrupt.h>
#include <linux/io.h>
@@ -732,12 +733,21 @@ static struct of_device_id virtio_mmio_match[] = {
};
MODULE_DEVICE_TABLE(of, v...
2015 Jul 28
3
[PATCH] virtio_mmio: add ACPI probing
...<graeme.gregory at linaro.org>
---
drivers/virtio/virtio_mmio.c | 10 ++++++++++
1 file changed, 10 insertions(+)
diff --git a/drivers/virtio/virtio_mmio.c b/drivers/virtio/virtio_mmio.c
index 10189b5..f499d9d 100644
--- a/drivers/virtio/virtio_mmio.c
+++ b/drivers/virtio/virtio_mmio.c
@@ -58,6 +58,7 @@
#define pr_fmt(fmt) "virtio-mmio: " fmt
+#include <linux/acpi.h>
#include <linux/highmem.h>
#include <linux/interrupt.h>
#include <linux/io.h>
@@ -732,12 +733,21 @@ static struct of_device_id virtio_mmio_match[] = {
};
MODULE_DEVICE_TABLE(of, v...
2019 Jan 22
2
[PATCH] lib: Reset errno to zero to avoid erroneously returning E2BIG
This line was accidentally removed in 77fe74fc, causing
bug #1145056 (Bugzilla) to resurface.
---
lib/utf16.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/lib/utf16.c b/lib/utf16.c
index e099548..67fa996 100644
--- a/lib/utf16.c
+++ b/lib/utf16.c
@@ -58,6 +58,7 @@ _hivex_recode (hive_h *h, recode_type t,
/* Reset errno here because we don't want to accidentally
* return E2BIG to a library caller.
*/
+ errno = 0;
size_t prev = outalloc;
/* Try again with a larger output buffer. */
free (out);
--...
2014 Feb 23
2
mk/efi.mk: Add libefi.a dependency
...> .PRECIOUS: %.o
> -%.o: %.S
> +%.o: %.S $(LIBEFI)
> $(CC) $(SFLAGS) -c -o $@ $<
>
> .PRECIOUS: %.o
> -%.o: %.c
> +%.o: %.c $(LIBEFI)
> $(CC) $(CFLAGS) -c -o $@ $<
>
I see duplicate lines.
Why do they exist?
Would
--- a/mk/efi.mk
+++ b/mk/efi.mk
@@ -58,10 +58,6 @@ $(LIBEFI):
%.o: %.S $(LIBEFI)
$(CC) $(SFLAGS) -c -o $@ $<
-.PRECIOUS: %.o
-%.o: %.c $(LIBEFI)
- $(CC) $(CFLAGS) -c -o $@ $<
-
#%.efi: %.so
# $(OBJCOPY) -j .text -j .sdata -j .data -j .dynamic -j .dynsym -j .rel \
# -j .rela -j .reloc --target=...
2016 Mar 21
2
[Inliner] Loop info in the inliner
...----------------------------------------------------===//
#include "llvm/Transforms/IPO/InlinerPass.h"+#include "llvm/Analysis/LoopInfo.h" #include "llvm/ADT/SmallPtrSet.h" #include "llvm/ADT/Statistic.h" #include "llvm/Analysis/AliasAnalysis.h"@@ -58,6 +59,7 @@ Inliner::Inliner(char &ID, bool InsertLifetime) void Inliner::getAnalysisUsage(AnalysisUsage &AU) const { AU.addRequired<AssumptionCacheTracker>(); AU.addRequired<TargetLibraryInfoWrapperPass>();+ AU.addRequired<LoopInfoWrapperPass>(); getAAResultsAnalysi...
2015 Jul 28
3
[PATCH] virtio_mmio: add ACPI probing
...io_mmio.c | 10 ++++++++++
>> 1 file changed, 10 insertions(+)
>>
>> diff --git a/drivers/virtio/virtio_mmio.c b/drivers/virtio/virtio_mmio.c
>> index 10189b5..f499d9d 100644
>> --- a/drivers/virtio/virtio_mmio.c
>> +++ b/drivers/virtio/virtio_mmio.c
>> @@ -58,6 +58,7 @@
>>
>> #define pr_fmt(fmt) "virtio-mmio: " fmt
>>
>> +#include <linux/acpi.h>
>> #include <linux/highmem.h>
>> #include <linux/interrupt.h>
>> #include <linux/io.h>
>> @@ -732,12 +733,21 @@ static struct...
2015 Jul 28
3
[PATCH] virtio_mmio: add ACPI probing
...io_mmio.c | 10 ++++++++++
>> 1 file changed, 10 insertions(+)
>>
>> diff --git a/drivers/virtio/virtio_mmio.c b/drivers/virtio/virtio_mmio.c
>> index 10189b5..f499d9d 100644
>> --- a/drivers/virtio/virtio_mmio.c
>> +++ b/drivers/virtio/virtio_mmio.c
>> @@ -58,6 +58,7 @@
>>
>> #define pr_fmt(fmt) "virtio-mmio: " fmt
>>
>> +#include <linux/acpi.h>
>> #include <linux/highmem.h>
>> #include <linux/interrupt.h>
>> #include <linux/io.h>
>> @@ -732,12 +733,21 @@ static struct...
2005 Dec 15
1
[PATCH RESEND] enable swiotlb on i386 in linux-2.6-xen tree
...ixes it in the same manner that
x86-64 does it.
Cheers,
Muli
Signed-Off-By: Muli Ben-Yehuda <mulix@mulix.org>
diff -r c1c170a55fe0e97156379d10870aed024ed0012a arch/i386/Kconfig
--- a/arch/i386/Kconfig Thu Dec 8 20:50:02 2005 -0700
+++ b/arch/i386/Kconfig Tue Dec 13 20:07:34 2005 +0200
@@ -58,6 +58,7 @@
bool "Xen-compatible"
select X86_UP_APIC if !SMP && XEN_PRIVILEGED_GUEST
select X86_UP_IOAPIC if !SMP && XEN_PRIVILEGED_GUEST
+ select SWIOTLB if XEN_PHYSDEV_ACCESS
help
Choose this option is you plan to run this kernel on top of Xen
Hypervisor....
2014 Feb 14
3
[LLVMdev] [cfe-dev] [llvm] r201432 - Remove myself as owner of libc++
...DE_OWNERS.TXT?rev=201432&r1=201431&r2=201432&view=diff
>>> ==============================================================================
>>> --- llvm/trunk/CODE_OWNERS.TXT (original)
>>> +++ llvm/trunk/CODE_OWNERS.TXT Fri Feb 14 15:09:01 2014
>>> @@ -58,9 +58,6 @@ N: James Grosbach
>>> E: grosbach at apple.com
>>> D: MC layer
>>>
>>> -N: Howard Hinnant
>>> -D: libc++
>>> -
>>
>> I would like to volunteer as the code owner for libc++.
>
> I support Marshall becoming code owner...
2012 Mar 16
1
[PATCH] virtio-spec: split virtio-net device status filed into ro and rw byte
...e is safe.
Signed-off-by: Jason Wang <jasowang at redhat.com>
---
virtio-0.9.4.lyx | 20 +++++++++++++++++++-
1 files changed, 19 insertions(+), 1 deletions(-)
diff --git a/virtio-0.9.4.lyx b/virtio-0.9.4.lyx
index 6c7bab1..ef3951c 100644
--- a/virtio-0.9.4.lyx
+++ b/virtio-0.9.4.lyx
@@ -58,6 +58,7 @@
\html_be_strict false
\author -608949062 "Rusty Russell,,,"
\author 1531152142 "pbonzini"
+\author 2090695081 "Jason"
\end_header
\begin_body
@@ -4012,8 +4013,19 @@ configuration
layout Two configuration fields are currently defined.
The mac add...
2012 Mar 16
1
[PATCH] virtio-spec: split virtio-net device status filed into ro and rw byte
...e is safe.
Signed-off-by: Jason Wang <jasowang at redhat.com>
---
virtio-0.9.4.lyx | 20 +++++++++++++++++++-
1 files changed, 19 insertions(+), 1 deletions(-)
diff --git a/virtio-0.9.4.lyx b/virtio-0.9.4.lyx
index 6c7bab1..ef3951c 100644
--- a/virtio-0.9.4.lyx
+++ b/virtio-0.9.4.lyx
@@ -58,6 +58,7 @@
\html_be_strict false
\author -608949062 "Rusty Russell,,,"
\author 1531152142 "pbonzini"
+\author 2090695081 "Jason"
\end_header
\begin_body
@@ -4012,8 +4013,19 @@ configuration
layout Two configuration fields are currently defined.
The mac add...
2002 Jun 26
1
using block devices as harddisks
.../
+ }
if ((stat_buf.st_size % 512) != 0) {
BX_PANIC(("size of disk image must be multiple of 512 bytes"));
}
diff -urN bochs-1.4.orig/bochs.h bochs-1.4/bochs.h
--- bochs-1.4.orig/bochs.h Tue Mar 26 14:59:36 2002
+++ bochs-1.4/bochs.h Wed Jun 26 09:34:59 2002
@@ -58,6 +58,7 @@
#else
# ifndef WIN32
# include <sys/time.h>
+# include <sys/mount.h>
# endif
# include <sys/types.h>
# include <sys/stat.h>
2016 Mar 22
0
[Inliner] Loop info in the inliner
...------------===//
>
> #include "llvm/Transforms/IPO/InlinerPass.h"
> +#include "llvm/Analysis/LoopInfo.h"
> #include "llvm/ADT/SmallPtrSet.h"
> #include "llvm/ADT/Statistic.h"
> #include "llvm/Analysis/AliasAnalysis.h"
> @@ -58,6 +59,7 @@ Inliner::Inliner(char &ID, bool InsertLifetime)
> void Inliner::getAnalysisUsage(AnalysisUsage &AU) const {
> AU.addRequired<AssumptionCacheTracker>();
> AU.addRequired<TargetLibraryInfoWrapperPass>();
> + AU.addRequired<LoopInfoWrapperPass>(...
2020 Sep 09
1
[PATCH v2 2/7] kernel/resource: move and rename IORESOURCE_MEM_DRIVER_MANAGED
...| 2 +-
> mm/memory_hotplug.c | 4 ++--
> 3 files changed, 6 insertions(+), 4 deletions(-)
>
> diff --git a/include/linux/ioport.h b/include/linux/ioport.h
> index 52a91f5fa1a36..d7620d7c941a0 100644
> --- a/include/linux/ioport.h
> +++ b/include/linux/ioport.h
> @@ -58,6 +58,9 @@ struct resource {
> #define IORESOURCE_EXT_TYPE_BITS 0x01000000 /* Resource extended types */
> #define IORESOURCE_SYSRAM 0x01000000 /* System RAM (modifier) */
>
> +/* IORESOURCE_SYSRAM specific bits. */
> +#define IORESOURCE_SYSRAM_DRIVER_MANAGED 0x02000000 /* Always...
2023 Apr 10
2
[PATCH v2 1/2] virtio_ring: add a struce device forward declaration
...f-by: Shunsuke Mie <mie at igel.co.jp>
---
include/linux/virtio_ring.h | 1 +
1 file changed, 1 insertion(+)
diff --git a/include/linux/virtio_ring.h b/include/linux/virtio_ring.h
index 8b95b69ef694..77a9c2f52919 100644
--- a/include/linux/virtio_ring.h
+++ b/include/linux/virtio_ring.h
@@ -58,6 +58,7 @@ do { \
struct virtio_device;
struct virtqueue;
+struct device;
/*
* Creates a virtqueue and allocates the descriptor ring. If
--
2.25.1
2005 Apr 15
2
Logwatch
...;m not sure if this is complete, especially for the new webmail
daemon in 0.44.1
#but you will get at least all currently supported logs
-*OnlyService = (imapd|imapd-ssl)
+*OnlyService = (imap-login|imapd|imapd-ssl)
*RemoveHeaders =
--- /etc/log.d/conf/services/pop3.conf 2005-04-15 14:51:22.795813799 -0400
+++ /etc/log.d/conf/services/pop3.conf 2005-04-15 15:07:00.837019392 -0400
@@ -15,12 +15,12 @@
Title = "POP-3"
# Which logfile group...
-LogFile = messages
+LogFile = maillog
# Only give lines pertaining to courier...
# I'm not sure if this is complete, especially fo...
2010 Mar 30
1
[PATCH][QEMU][VHOST]fix feature bit handling for mergeable rx buffers
...cked_features |= (1 << VIRTIO_F_NOTIFY_ON_EMPTY);
- if (features & (1 << VIRTIO_RING_F_INDIRECT_DESC))
- net->dev.acked_features |= (1 << VIRTIO_RING_F_INDIRECT_DESC);
-}
-
static int vhost_net_get_fd(VLANClientState *backend)
{
switch (backend->info->type) {
@@ -58,6 +50,25 @@ static int vhost_net_get_fd(VLANClientSt
}
}
+void vhost_net_ack_features(struct vhost_net *net, unsigned features)
+{
+ int vnet_hdr_sz = sizeof(struct virtio_net_hdr);
+
+ net->dev.acked_features = net->dev.backend_features;
+ if (features & (1 << VIRTIO_F_NOTIFY_...
2010 Mar 30
1
[PATCH][QEMU][VHOST]fix feature bit handling for mergeable rx buffers
...cked_features |= (1 << VIRTIO_F_NOTIFY_ON_EMPTY);
- if (features & (1 << VIRTIO_RING_F_INDIRECT_DESC))
- net->dev.acked_features |= (1 << VIRTIO_RING_F_INDIRECT_DESC);
-}
-
static int vhost_net_get_fd(VLANClientState *backend)
{
switch (backend->info->type) {
@@ -58,6 +50,25 @@ static int vhost_net_get_fd(VLANClientSt
}
}
+void vhost_net_ack_features(struct vhost_net *net, unsigned features)
+{
+ int vnet_hdr_sz = sizeof(struct virtio_net_hdr);
+
+ net->dev.acked_features = net->dev.backend_features;
+ if (features & (1 << VIRTIO_F_NOTIFY_...