dm-crypt.c (61e0e79ee3c609eb34edf2fe023708cba6a79b1f) | dm-crypt.c (586e80e6ee0d137c7d79fbae183bb37bc60ee97e) |
---|---|
1/* 2 * Copyright (C) 2003 Christophe Saout <christophe@saout.de> 3 * Copyright (C) 2004 Clemens Fruhwirth <clemens@endorphin.org> 4 * Copyright (C) 2006-2008 Red Hat, Inc. All rights reserved. 5 * 6 * This file is released under the GPL. 7 */ 8 --- 9 unchanged lines hidden (view full) --- 18#include <linux/crypto.h> 19#include <linux/workqueue.h> 20#include <linux/backing-dev.h> 21#include <asm/atomic.h> 22#include <linux/scatterlist.h> 23#include <asm/page.h> 24#include <asm/unaligned.h> 25 | 1/* 2 * Copyright (C) 2003 Christophe Saout <christophe@saout.de> 3 * Copyright (C) 2004 Clemens Fruhwirth <clemens@endorphin.org> 4 * Copyright (C) 2006-2008 Red Hat, Inc. All rights reserved. 5 * 6 * This file is released under the GPL. 7 */ 8 --- 9 unchanged lines hidden (view full) --- 18#include <linux/crypto.h> 19#include <linux/workqueue.h> 20#include <linux/backing-dev.h> 21#include <asm/atomic.h> 22#include <linux/scatterlist.h> 23#include <asm/page.h> 24#include <asm/unaligned.h> 25 |
26#include "dm.h" | 26#include <linux/device-mapper.h> |
27 28#define DM_MSG_PREFIX "crypt" 29#define MESG_STR(x) x, sizeof(x) 30 31/* 32 * context holding the current state of a multi-part conversion 33 */ 34struct convert_context { --- 1270 unchanged lines hidden --- | 27 28#define DM_MSG_PREFIX "crypt" 29#define MESG_STR(x) x, sizeof(x) 30 31/* 32 * context holding the current state of a multi-part conversion 33 */ 34struct convert_context { --- 1270 unchanged lines hidden --- |