Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1316059 > unrolled thread
| Started by | Stephen Rothwell <sfr@canb.auug.org.au> |
|---|---|
| First post | 2016-01-24 23:30 +0100 |
| Last post | 2016-01-25 08:50 +0100 |
| Articles | 2 — 2 participants |
Back to article view | Back to linux.kernel
linux-next: manual merge of the mips tree with Linus' tree Stephen Rothwell <sfr@canb.auug.org.au> - 2016-01-24 23:30 +0100
Re: linux-next: manual merge of the mips tree with Linus' tree Ralf Baechle <ralf@linux-mips.org> - 2016-01-25 08:50 +0100
| From | Stephen Rothwell <sfr@canb.auug.org.au> |
|---|---|
| Date | 2016-01-24 23:30 +0100 |
| Subject | linux-next: manual merge of the mips tree with Linus' tree |
| Message-ID | <qUBkt-2UA-7@gated-at.bofh.it> |
Hi Ralf,
Today's linux-next merge of the mips tree got conflicts in:
arch/mips/kvm/tlb.c
between commit:
ba049e93aef7 ("kvm: rename pfn_t to kvm_pfn_t")
from Linus' tree and commit:
cb1b447f0c36 ("MIPS: KVM: Convert EXPORT_SYMBOL to _GPL")
from the mips tree.
I fixed it up (see below) and can carry the fix as necessary (no action
is required).
--
Cheers,
Stephen Rothwell sfr@canb.auug.org.au
diff --cc arch/mips/kvm/tlb.c
index 570479c03bdc,0939b1d6f910..000000000000
--- a/arch/mips/kvm/tlb.c
+++ b/arch/mips/kvm/tlb.c
@@@ -35,17 -35,17 +35,17 @@@
#define PRIx64 "llx"
atomic_t kvm_mips_instance;
- EXPORT_SYMBOL(kvm_mips_instance);
+ EXPORT_SYMBOL_GPL(kvm_mips_instance);
/* These function pointers are initialized once the KVM module is loaded */
-pfn_t (*kvm_mips_gfn_to_pfn)(struct kvm *kvm, gfn_t gfn);
+kvm_pfn_t (*kvm_mips_gfn_to_pfn)(struct kvm *kvm, gfn_t gfn);
- EXPORT_SYMBOL(kvm_mips_gfn_to_pfn);
+ EXPORT_SYMBOL_GPL(kvm_mips_gfn_to_pfn);
-void (*kvm_mips_release_pfn_clean)(pfn_t pfn);
+void (*kvm_mips_release_pfn_clean)(kvm_pfn_t pfn);
- EXPORT_SYMBOL(kvm_mips_release_pfn_clean);
+ EXPORT_SYMBOL_GPL(kvm_mips_release_pfn_clean);
-bool (*kvm_mips_is_error_pfn)(pfn_t pfn);
+bool (*kvm_mips_is_error_pfn)(kvm_pfn_t pfn);
- EXPORT_SYMBOL(kvm_mips_is_error_pfn);
+ EXPORT_SYMBOL_GPL(kvm_mips_is_error_pfn);
uint32_t kvm_mips_get_kernel_asid(struct kvm_vcpu *vcpu)
{
[toc] | [next] | [standalone]
| From | Ralf Baechle <ralf@linux-mips.org> |
|---|---|
| Date | 2016-01-25 08:50 +0100 |
| Message-ID | <qUK4q-D0-1@gated-at.bofh.it> |
| In reply to | #1316059 |
On Mon, Jan 25, 2016 at 09:25:10AM +1100, Stephen Rothwell wrote:
>
> Today's linux-next merge of the mips tree got conflicts in:
>
> arch/mips/kvm/tlb.c
>
> between commit:
>
> ba049e93aef7 ("kvm: rename pfn_t to kvm_pfn_t")
>
> from Linus' tree and commit:
>
> cb1b447f0c36 ("MIPS: KVM: Convert EXPORT_SYMBOL to _GPL")
>
> from the mips tree.
>
> I fixed it up (see below) and can carry the fix as necessary (no action
> is required).
Linus has pulled so I'm reseting my branch for you back to v4.5-rc1.
Thanks,
Ralf
[toc] | [prev] | [standalone]
Back to top | Article view | linux.kernel
csiph-web