search for: foff

Displaying 10 results from an estimated 10 matches for "foff".

Did you mean: ffff
2017 Feb 20
3
[PATCH] Correct chain.c32 v. 6.04-pre1 for Reactos
...], "reactos=", 8)) { - /* - * settings based on commit - * ad4cf1470977f648ee1dd45e97939589ccb0393c - * note, conflicts with: - * http://reactos.freedoors.org/Reactos%200.3.13/ReactOS-0.3.13-REL-src/boot/freeldr/notes.txt - */ - opt.fseg = 0; - opt.foff = 0x8000; - opt.fip = 0x8100; + opt.fseg = 0x0F80; + opt.foff = 0; + opt.fip = 0; opt.file = argv[i] + 8; opt.setbpb = true; opt.hand = false; diff U3 doc/chain.txt doc/chain.txt --- doc/chain.txt Wed Mar 02 07:06:02 2016 +++ doc/chain.txt Mon Feb 18 18:45:10 2017...
2017 Feb 23
0
[PATCH] Correct chain.c32 v. 6.04-pre1 for Reactos
...commit > - * ad4cf1470977f648ee1dd45e97939589ccb0393c > - * note, conflicts with: > - * http://reactos.freedoors.org/Reactos%200.3.13/ReactOS-0.3.13-REL-src/boot/freeldr/notes.txt > - */ > - opt.fseg = 0; > - opt.foff = 0x8000; > - opt.fip = 0x8100; > + opt.fseg = 0x0F80; > + opt.foff = 0; > + opt.fip = 0; > opt.file = argv[i] + 8; > opt.setbpb = true; > opt.hand = false; > diff U3 doc/chain.txt doc/chain.txt >...
2020 Feb 10
1
[nbdkit PATCH] split: Add support for .extents
..._extents (void *handle, uint32_t count, uint64_t offset, + uint32_t flags, struct nbdkit_extents *extents) +{ + struct handle *h = handle; + const bool req_one = flags & NBDKIT_FLAG_REQ_ONE; + + while (count > 0) { + struct file *file = get_file (h, offset); + uint64_t foffs = offset - file->offset; + uint64_t max; + int64_t r; + + max = file->size - foffs; + if (max > count) + max = count; + + if (file->can_extents) { + ACQUIRE_LOCK_FOR_CURRENT_SCOPE (&lseek_lock); + max = r = do_extents (file, max, foffs, req_one, extent...
2017 Mar 04
1
[PATCH] Update chain.c32 v. 6.04-pre1 for current Reactos
...], "reactos=", 8)) { - /* - * settings based on commit - * ad4cf1470977f648ee1dd45e97939589ccb0393c - * note, conflicts with: - * http://reactos.freedoors.org/Reactos%200.3.13/ReactOS-0.3.13-REL-src/boot/freeldr/notes.txt - */ - opt.fseg = 0; - opt.foff = 0x8000; - opt.fip = 0x8100; + opt.fseg = 0x0F80; + opt.foff = 0; + opt.fip = 0; opt.file = argv[i] + 8; opt.setbpb = true; opt.hand = false; diff U3 doc/chain.txt doc/chain.txt --- doc/chain.txt Wed Mar 02 07:06:02 2016 +++ doc/chain.txt Mon Feb 18 18:45:10 2017...
2020 Oct 30
6
[PATCH 0/5] Improve Robust Channel (RC) recovery for Turing
This is an initial series of patches to improve channel recovery on Turing GPUs with the goal of improving reliability enough to eventually enable SVM for Turing. It's likely follow up patches will be required to fully address problems with less trivial workloads than what I have been able to test thus far. This series primarily addresses a number of hardware changes to interrupt layout and
2019 May 10
11
[nbdkit PATCH 0/9] RFC: implement NBD_CMD_CACHE
I'm still working my way through the filters before this series will be complete, but this is enough of a start to at least get some feedback on the idea of implementing another NBD protocol extension. Eric Blake (9): server: Internal hooks for implementing NBD_CMD_CACHE plugins: Add .cache callback file, split: Implement .cache with posix_fadvise nbd: Implement NBD_CMD_CACHE
2010 Jun 22
0
Processed: submitter 585188, submitter 585189, submitter 585190, submitter 585191, submitter 585192 ...
...5206 {Done: Sandro Tosi <morph at debian.org>} [blender] blender: Python string exceptions no more allowed in Python 2.6 Changed Bug submitter to 'Sandro Tosi <morph at debian.org>' from 'Sandro Tosi <morph at ravel.debian.org>' > submitter 585207 ! Bug #585207 [foff] foff: Python string exceptions no more allowed in Python 2.6 Changed Bug submitter to 'Sandro Tosi <morph at debian.org>' from 'Sandro Tosi <morph at ravel.debian.org>' > submitter 585208 ! Bug #585208 [fnorb] fnorb: Python string exceptions no more allowed in Python...
2014 Jun 29
10
[PATCH 0/6] chain.c32 patches
This small set fixes few bugs, improves gpt handling (under buggy conditions) and implements strict flag with more fine grained control which should fix issues with sanity checks against disk sizes. If this set is allright I'd want to do what I mentioned in older discussion with Ady - backport missing patches from 6.x to 5.x and 4.x so all versions have up to date chain version. Michal
2012 Nov 06
50
chain.c32 (and partiter) updates v2
This is a bit updated set of chain.c32 changes that simplifies a few things (and in partiter part), fixes few minor issues and adds a few new features. Details are in the following commits, below is the summary and pull details at the end. Shao - any chance to peek over them ? Most of those are relatively simple changes and well tested, though of course something might have slipped my attention.
2019 May 16
27
[nbdkit PATCH v2 00/24] implement NBD_CMD_CACHE
Since v1: - rework .can_cache to be tri-state, with default of no advertisement (ripple effect through other patches) - add a lot more patches in order to round out filter support And in the meantime, Rich pushed NBD_CMD_CACHE support into libnbd, so in theory we now have a way to test cache commands through the entire stack. Eric Blake (24): server: Internal hooks for implementing