aboutsummaryrefslogtreecommitdiffstats
path: root/tools/perf/scripts/python/syscall-counts.py
diff options
context:
space:
mode:
authorPhilipp Reisner <philipp.reisner@linbit.com>2010-05-25 08:32:03 -0400
committerJens Axboe <jaxboe@fusionio.com>2010-06-01 05:12:26 -0400
commit2c8d196759054b632788633b20e39167df36041d (patch)
treed4e5016e6d796b748f43ff7fca21045c6c890a5b /tools/perf/scripts/python/syscall-counts.py
parentb7c335713ea130d707c22d7f7c57a8eca75ded7e (diff)
drbd: Revert "drbd: Create new current UUID as late as possible"
The late-UUID writing is delayed until the next release. Signed-off-by: Philipp Reisner <philipp.reisner@linbit.com> Signed-off-by: Lars Ellenberg <lars.ellenberg@linbit.com> Signed-off-by: Jens Axboe <jaxboe@fusionio.com>
Diffstat (limited to 'tools/perf/scripts/python/syscall-counts.py')
0 files changed, 0 insertions, 0 deletions
hl opt">} __attribute__((packed)); /* Find the next record, taking into account the 4-byte alignment */ static inline const struct ihex_binrec * ihex_next_binrec(const struct ihex_binrec *rec) { int next = ((be16_to_cpu(rec->len) + 5) & ~3) - 2; rec = (void *)&rec->data[next]; return be16_to_cpu(rec->len) ? rec : NULL; } /* Check that ihex_next_binrec() won't take us off the end of the image... */ static inline int ihex_validate_fw(const struct firmware *fw) { const struct ihex_binrec *rec; size_t ofs = 0; while (ofs <= fw->size - sizeof(*rec)) { rec = (void *)&fw->data[ofs]; /* Zero length marks end of records */