Displaying 10 results from an estimated 10 matches for "print_warn".
Did you mean:
dprint_warn
2014 Jun 13
3
[PATCH 0/2] sparsify: Add --tmp option to allow specifying temporary directory or block device.
The first patch is just some simple refactoring. See the second patch
for a description of the new virt-sparsify --tmp option.
I tested this using a loopback device as my temporary block device,
and it seems to work fine for me.
Federico .. this needs a BZ :-)
Rich.
2004 Jun 20
0
Redhat 9 hang with quota problem
...020 00000007 db5c6000 c997dd00 c0163a42
f4145000 c039f020 04000000 00000000 00000000 00001000 00000000 c01642a0
c997dd00 00000004 00000000 00000000 db5c7c96 00000001 00042330 c997dd00
Call Trace: [<c011c7df>] tty_write_message [kernel] 0x4f (0xdb5c7c3c))
[<c0163a42>] print_warning [kernel] 0x82 (0xdb5c7c58))
[<c01642a0>] dquot_alloc_space [kernel] 0x140 (0xdb5c7c78))
[<f8859890>] ext3_new_block [ext3] 0xa30 (0xdb5c7cb0))
[<f884b5eb>] journal_dirty_metadata_R99e24994 [jbd] 0x17b (0xdb5c7cc8))
[<f885ebe7>] ext3_do_update_ino...
2014 Mar 11
21
[PATCH v2 00/18] Add discard support.
This still isn't working at the moment. See:
http://marc.info/?t=139457409300003&r=1&w=2
This set of patches:
- Adds new APIs to support discard in libguestfs.
- Adds discard support to virt-format.
- Adds discard support to virt-sysprep.
- Implements virt-sparsify --in-place.
Rich.
2007 Jul 05
2
[LLVMdev] PATCH (rest of code changes) "bytecode" --> "bitcode"
Here is the bulk of the sanitizing.
My residual doubts center around the question
whether we still do/want to support (un)compressed *byte*code
in 2.0/2.1.
I need a definitive word on this to proceed.
My understanding is that bytecode is already gone, but there are
still some functions/enums that really deal with *byte*code
(instead of *bit*code).
I did not touch those areas, so the attached
2017 Oct 03
0
[PATCH v2 1/2] daemon: Reimplement statvfs API in OCaml.
...anups.c
daemon/stubs-0.c
diff --git a/sparsify/copying.ml b/sparsify/copying.ml
index 7d004b550..0c0b27c94 100644
--- a/sparsify/copying.ml
+++ b/sparsify/copying.ml
@@ -99,7 +99,7 @@ let run indisk outdisk check_tmpdir compress convert
virtual_size (human_size virtual_size);
let print_warning () =
- let free_space = StatVFS.free_space tmpdir in
+ let free_space = StatVFS.free_space (StatVFS.statvfs tmpdir) in
let extra_needed = virtual_size -^ free_space in
if extra_needed > 0L then (
warning (f_"\
diff --git a/v2v/v2v.ml b/v2v/v2v.ml
index 74...
2017 Oct 04
2
[PATCH v3 0/2] builder: Choose better weights in the planner.
v2 -> v3:
- Drop gnulib fallback.
2017 Oct 02
3
[PATCH 0/2] builder: Choose better weights in the planner.
It started out as "this'll be just a simple fix ..."
and turned into something a bit over-engineered in the end.
Here it is anyway.
Rich.
2017 Oct 03
4
[PATCH v2 0/2] builder: Choose better weights in the planner.
v1 -> v2:
- Removed the f_type field from StatVFS.statvfs structure.
- New function StatVFS.filesystem_is_remote, written in C.
[Thinking about it, this should probably be called
?is_network_filesystem?, but I can change that before
pushing].
- Use statvfs instead of fstatvfs, and statfs instead of fstatfs.
- Rejigged the comments in builder/builder.ml to make them simpler
2016 May 22
0
[PATCH 2/2] ocaml tools: Use a common debug function.
...virtual_size indisk in
- if verbose () then
- printf "input disk virtual size is %Ld bytes (%s)\n%!"
- virtual_size (human_size virtual_size);
+ debug "input disk virtual size is %Ld bytes (%s)"
+ virtual_size (human_size virtual_size);
let print_warning () =
let free_space = statvfs_free_space tmpdir in
@@ -327,8 +326,7 @@ You can ignore this warning or change it to a hard failure using the
| None -> ""
| Some option -> " -o " ^ quote option)
(quote overlaydisk) (quote (qemu_input_filename o...
2016 May 22
4
ocaml tools: Use a common debug function.
Add a Common_utils.debug function for printing messages
only when in verbose mode.
Rich.