Displaying 2 results from an estimated 2 matches for "tempnod".
Did you mean:
tempnode
2006 Aug 25
4
[LLVMdev] Built LLVM 1.8 on VC8, invalid iterator issue/fix, some questions
...ant like 'ret int 0'
ret int %foo
}
My hack around the situation was to copy From.Val into a temporary
std::vector<SDNode*>, by modifying the code that generates that code
(TableGen/DAGISelEmitter.cpp), but that's got a performance penalty:
// ...
std::vector<SDNode*> tempnodes(From.Val->use_begin(), From.Val->use_end());
for (SDNode::use_iterator UI = tempnodes.begin(); UI !=
tempnodes.end(); UI++) {
// ...
I could preallocate the temporary vector to a certain size to help a
little, but ideally there's no copying of vectors at all.
NOTE: I haven'...
2010 Apr 16
2
[RFC] btrfs, udev and btrfs
...ules.d/60-btrfs.rules
# ghigo 15/04/2010
ACTION!="add|change", GOTO="btrfs_scan_end"
SUBSYSTEM!="block", GOTO="btrfs_scan_end"
KERNEL!="sd[!0-9]*|hd[!0-9]*", GOTO="btrfs_scan_end"
IMPORT{program}="/sbin/blkid -o udev -p $tempnode"
# only disk scsi and ide
ENV{ID_FS_TYPE}="btrfs", RUN+="/sbin/btrfsctl -A /dev/$name"
LABEL="btrfs_scan_end"
Note #1) This rule is tested on a ubuntu 10.4
Note #2) ubuntu 10.4 has the old btrfctl tool
This work quite well for devices which appear *af...