search for: curspace

Displaying 6 results from an estimated 6 matches for "curspace".

Did you mean: adrspace
2018 Jul 02
0
Samba 4.3.11 accessing disk every minute
...mode=S_IFDIR|0755, st_size=4096, ...}) = 0 stat64("/mnt/HD/HD_a2", {st_mode=S_IFDIR|0777, st_size=4096, ...}) = 0 close(8) = 0 munmap(0xb4ca0000, 4096) = 0 quotactl(Q_GETQUOTA|USRQUOTA, "/dev/sda2", 1002, {bhardlimit=0, bsoftlimit=0, curspace=0, ihardlimit=0, isoftlimit=0, curinodes=0, ...}) = 0 getegid32() = 1000 stat64(".", {st_mode=S_IFDIR|0777, st_size=4096, ...}) = 0 open("/etc/mtab", O_RDONLY|O_CLOEXEC) = 8 fstat64(8, {st_mode=S_IFREG|0755, st_size=693, ...}) = 0 mmap2(NULL, 4096,...
2014 Mar 03
1
Doubled Quotas on Ubuntu
...2, cUnitAvail=2097152 [2014/01/29 09:27:25.429103, 9] smbd/trans2.c:941(send_trans2_replies) t2_rep: params_sent_thistime = 0, data_sent_thistime = 32, useable_space = 131012 while strace shows: quotactl(Q_GETQUOTA|GRPQUOTA, "/dev/sdb1", 1009, {bhardlimit=2097152, bsoftlimit=2097152, curspace=8, ihardlimit=0, isoftlimit=0, curinodes=33, ...}) = 0 The quotactl syscall seems to be returning identical information for both machines. However, the Ubuntu machine seems to report approximately double the cUnitTotal and cUnitAvail as the Mandriva machine. Why would that be? Thanks!...
2004 Oct 27
0
[LLVMdev] Getting started with GC
On Wed, 27 Oct 2004, Tom Brown wrote: > On Tue, Oct 26, 2004 at 11:17:00PM -0500, Chris Lattner wrote: > > On Tue, 26 Oct 2004, Tom Brown wrote: > > > $ llvm-as alloc_loop.ll > > > $ lli alloc_loop.bc > > > lli: Globals.cpp:81: llvm::GlobalVariable::GlobalVariable(const llvm::Type*, bool, llvm::GlobalValue::LinkageTypes, llvm::Constant*, const std::string&,
2004 Oct 27
2
[LLVMdev] Getting started with GC
On Tue, Oct 26, 2004 at 11:17:00PM -0500, Chris Lattner wrote: > On Tue, 26 Oct 2004, Tom Brown wrote: > > $ llvm-as alloc_loop.ll > > $ lli alloc_loop.bc > > lli: Globals.cpp:81: llvm::GlobalVariable::GlobalVariable(const llvm::Type*, bool, llvm::GlobalValue::LinkageTypes, llvm::Constant*, const std::string&, llvm::Module*): Assertion `Initializer->getType() == Ty
2004 Oct 28
2
[LLVMdev] Getting started with GC
We have a few questions about the current state of GC. We decided to start (and finish?) our work by finishing SemiSpace. process_pointer is meant to move objects from CurSpace to OtherSpace. How can it find pointers to a moved object? How does it know the size of each object? Assuming we are writing a GC that will only work from llvm assembly our best option seems to be forcing the assembly code to follow a convention that identifies pointers. The SemiSpace code could ke...
2004 Oct 29
0
[LLVMdev] Getting started with GC
On Thu, 28 Oct 2004, Tom Brown wrote: > We have a few questions about the current state of GC. Ok. :) > We decided to start (and finish?) our work by finishing SemiSpace. Sounds good. > process_pointer is meant to move objects from CurSpace to OtherSpace. > How can it find pointers to a moved object? This is entirely up to you, as you're basically implementing the semispace collector in its entirety. See below. > How does it know the size of each object? I'm a big fan of starting simple. As such, I'd suggest usi...