search for: pi_error

Displaying 5 results from an estimated 5 matches for "pi_error".

Did you mean: i_error
2014 Jun 29
0
[PATCH 3/6] chain/partiter: adjust error reporting
...quested disk / partition combination."); goto bail; } } diff --git a/com32/chain/mangle.c b/com32/chain/mangle.c index ffdaab8..6963574 100644 --- a/com32/chain/mangle.c +++ b/com32/chain/mangle.c @@ -562,7 +562,7 @@ int manglepe_hide(struct part_iter *miter) } } - if (pi_errored(iter)) + if (iter->status < 0) goto bail; /* last update */ @@ -663,7 +663,7 @@ int manglepe_fixchs(struct part_iter *miter) } } - if (pi_errored(iter)) + if (iter->status < 0) goto bail; /* last update */ diff --git a/com32/chain/partiter.h b/com32...
2012 Aug 01
0
chain module updates
...s and unnamed aggregates com32/chain: change stepall into flags com32/chain: partiter - simplifications and updates com32/chain: remove redundant rawindex com32/chain: partiter - more precise comments / output com32/chain: remove unused ebr_start com32/chain: add pi_errored() in partiter com32/chain: mangle and related updates com32/chain: cleaner variable names com32/chain: use disk_guid for part_guid for 0th partition com32/chain: warning/error/help/doc tidying com32/chain: make 'fixchs' and 'hide' options respect '...
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
...flags com32/chain: shuffle code before partiter simplifications com32/chain: partiter - simplifications and updates com32/chain: remove redundant rawindex com32/chain: partiter - more precise comments / output com32/chain: remove unused ebr_start com32/chain: add pi_errored() in partiter com32/chain: mangle and related updates com32/chain: cleaner variable names com32/chain: use disk_guid for part_guid for 0th partition com32/chain: warning/error/help/doc tidying com32/chain: implement relax flag com32/chain: implement handling of...
2013 Oct 18
0
[RFC/PATCH 1/3] Move partiter from com32/chain to com32/lib/syslinux
...64_t ulast; - } gpt; - }; -}; - -extern const struct itertype * const typedos; -extern const struct itertype * const typegpt; -extern const struct itertype * const typeraw; - -struct part_iter *pi_begin(const struct disk_info *, int flags); -void pi_del(struct part_iter **); - -static inline int pi_errored(struct part_iter *iter) -{ - return iter->status > PI_DONE; -} - -/* inline virtuals */ -static inline int pi_next(struct part_iter *iter) -{ - return iter->type->next(iter); -} - -static inline void pi_dtor(struct part_iter *iter) -{ - iter->type->dtor(iter); -} - -#en...