Displaying 9 results from an estimated 9 matches for "cmd_check".
2006 Mar 21
0
[Bug 463] New: cmdflags missing entry for CMD_CHECK
https://bugzilla.netfilter.org/bugzilla/show_bug.cgi?id=463
Summary: cmdflags missing entry for CMD_CHECK
Product: iptables
Version: 1.3.5
Platform: i386
OS/Version: Fedora
Status: NEW
Severity: normal
Priority: P2
Component: iptables
AssignedTo: laforge@netfilter.org
ReportedBy: lstefani@djasolutions.com...
2013 Dec 02
3
[PATCH 1/3] btrfs-progs: Turning ON incompat isn't an error
Signed-off-by: Anand Jain <anand.jain@oracle.com>
---
mkfs.c | 3 +--
1 files changed, 1 insertions(+), 2 deletions(-)
diff --git a/mkfs.c b/mkfs.c
index de1beed..0843600 100644
--- a/mkfs.c
+++ b/mkfs.c
@@ -1196,8 +1196,7 @@ static void process_fs_features(u64 flags)
for (i = 0; i < ARRAY_SIZE(mkfs_features); i++) {
if (flags & mkfs_features[i].flag) {
- fprintf(stderr,
2007 Apr 15
0
Dovecot crashing
...o available.
#7 0x080735c6 in mbox_sync ()
No symbol table info available.
#8 0x08073a38 in mbox_storage_sync_init ()
No symbol table info available.
#9 0x0805f7b2 in imap_sync_init ()
No symbol table info available.
#10 0x0805fc5f in cmd_sync ()
No symbol table info available.
#11 0x080566db in cmd_check ()
---Type <return> to continue, or q <return> to quit---
No symbol table info available.
#12 0x0805a43e in _client_reset_command ()
No symbol table info available.
#13 0x0805a3d2 in _client_reset_command ()
No symbol table info available.
#14 0x0805a584 in _client_input ()
No symbol ta...
2013 Oct 22
0
[PATCH] Btrfs-progs: add support for the no holes incompat flag
...- rec->first_extent_gap < rec->isize))
+ if (rec->nlink > 0 && !no_holes &&
+ (rec->extent_end < rec->isize ||
+ rec->first_extent_gap < rec->isize))
rec->errors |= I_ERR_FILE_EXTENT_DISCOUNT;
}
@@ -6155,6 +6157,14 @@ int cmd_check(int argc, char **argv)
if (ret)
goto out;
+ /*
+ * We used to have to have these hole extents in between our real
+ * extents so if we don''t have this flag set we need to make sure there
+ * are no gaps in the file extents for inodes, otherwise we can just
+ * ignore it when thi...
2007 Apr 15
2
mbox sync assertion failed?
...o available.
#7 0x080735c6 in mbox_sync ()
No symbol table info available.
#8 0x08073a38 in mbox_storage_sync_init ()
No symbol table info available.
#9 0x0805f7b2 in imap_sync_init ()
No symbol table info available.
#10 0x0805fc5f in cmd_sync ()
No symbol table info available.
#11 0x080566db in cmd_check ()
---Type <return> to continue, or q <return> to quit---
No symbol table info available.
#12 0x0805a43e in _client_reset_command ()
No symbol table info available.
#13 0x0805a3d2 in _client_reset_command ()
No symbol table info available.
#14 0x0805a584 in _client_input ()
No symbol ta...
2007 Mar 02
2
rc25: need_space assert, core
Timo,
I see where at least one other person reported this, but here goes.
I went from rc24 to rc25 this morning, and I got an assert and core
from my own mailbox withing five minutes:
Mar 2 06:52:26 karst dovecot: [ID 107833 mail.error] IMAP(jaearick): file mbox-sync-rewrite.c: line 408: assertion failed: (need_space == (uoff_t)-mails[idx].space)
Mar 2 06:52:26 karst dovecot: [ID 107833
2005 Dec 13
2
Parallel build of dash still fails
Building dash in parallel still fails:
GEN dash/builtins.def
HOSTCC dash/mkinit
HOSTCC dash/mknodes
HOSTCC dash/mksignames
HOSTCC dash/mksyntax
dash/mksignames.c:59: warning: function declaration isn?t a prototype
dash/mksignames.c:365: warning: function declaration isn?t a prototype
dash/mksignames.c:386: warning: function declaration isn?t a prototype
KLIBCCC
2006 Apr 11
6
klibc kbuild status
Hi hpa & others.
Following is a list of issues that I hope to be addressed soon so
we are in even better shape for -mm inclusion.
1) rebuild initramfs when content changes.
> It is a simple matter of copying in usr/Makefile from the latest
> -linus kernel and replace the 10 first lines with the content from
> klibc Kbuild file.
2) havesyscalls.h is not deleted after make
2013 Apr 03
0
[PATCH] Btrfs-progs: add a free space cache checker to fsck
...+ if (ret) {
+ fprintf(stderr, "cache appears valid but isnt %Lu\n",
+ cache->key.objectid);
+ error++;
+ }
+ }
+
+ return error ? -EINVAL : 0;
+}
+
static int run_next_block(struct btrfs_root *root,
struct block_info *bits,
int bits_nr,
@@ -3862,6 +4066,11 @@ int cmd_check(int argc, char **argv)
if (ret)
fprintf(stderr, "Errors found in extent allocation tree\n");
+ fprintf(stderr, "checking free space cache\n");
+ ret = check_space_cache(root);
+ if (ret)
+ goto out;
+
fprintf(stderr, "checking fs roots\n");
ret = check_fs_r...