All of lore.kernel.org
 help / color / mirror / Atom feed
diff for duplicates of <4644C6FD.6010004@simon.arlott.org.uk>

diff --git a/a/1.txt b/N1/1.txt
index c16831c..8e44049 100644
--- a/a/1.txt
+++ b/N1/1.txt
@@ -57,8 +57,8 @@ index aeb79fb..e80c82c 100644
  	nd = (struct ia64_mca_notify_die *)args->err;
 -	/* Reason code 1 means machine check rendezous*/
 +	/* Reason code 1 means machine check rendezvous*/
- 	if ((val = DIE_INIT_MONARCH_ENTER || val = DIE_INIT_SLAVE_ENTER) &&
- 		 nd->sos->rv_rc = 1)
+ 	if ((val == DIE_INIT_MONARCH_ENTER || val == DIE_INIT_SLAVE_ENTER) &&
+ 		 nd->sos->rv_rc == 1)
  		return NOTIFY_DONE;
 diff --git a/arch/ia64/kernel/irq.c b/arch/ia64/kernel/irq.c
 index ce49c85..f88ff7c 100644
@@ -111,16 +111,16 @@ index 4f5fd09..21cd36a 100644
 @@ -151,12 +151,12 @@ static uint __kprobes is_cmp_ctype_unc_inst(uint template, uint slot,
  
  	cmp_inst.l = kprobe_inst;
- 	if ((cmp_inst.f.x2 = 0) || (cmp_inst.f.x2 = 1)) {
+ 	if ((cmp_inst.f.x2 == 0) || (cmp_inst.f.x2 == 1)) {
 -		/* Integere compare - Register Register (A6 type)*/
 +		/* Integer compare - Register Register (A6 type)*/
- 		if ((cmp_inst.f.tb = 0) && (cmp_inst.f.ta = 0)
- 				&&(cmp_inst.f.c = 1))
+ 		if ((cmp_inst.f.tb == 0) && (cmp_inst.f.ta == 0)
+ 				&&(cmp_inst.f.c == 1))
  			ctype_unc = 1;
- 	} else if ((cmp_inst.f.x2 = 2)||(cmp_inst.f.x2 = 3)) {
+ 	} else if ((cmp_inst.f.x2 == 2)||(cmp_inst.f.x2 == 3)) {
 -		/* Integere compare - Immediate Register (A8 type)*/
 +		/* Integer compare - Immediate Register (A8 type)*/
- 		if ((cmp_inst.f.ta = 0) &&(cmp_inst.f.c = 1))
+ 		if ((cmp_inst.f.ta == 0) &&(cmp_inst.f.c == 1))
  			ctype_unc = 1;
  	}
 @@ -950,7 +950,7 @@ int __kprobes setjmp_pre_handler(struct kprobe *p, struct pt_regs *regs)
@@ -505,7 +505,7 @@ index ff1c556..b362d6d 100644
  	 * we make the first section be the entire transfer
 @@ -337,7 +337,7 @@ bte_result_t bte_unaligned_copy(u64 src, u64 dest, u64 len, u64 mode)
  
- 			if (footBcopyDest = (headBcopyDest + headBcopyLen)) {
+ 			if (footBcopyDest == (headBcopyDest + headBcopyLen)) {
  				/*
 -				 * We have two contigous bcopy
 +				 * We have two contiguous bcopy
@@ -621,7 +621,7 @@ index c08db9c..44ccc0d 100644
 +	 * Before proceeding with the teardown we have to wait until all
  	 * existing references cease.
  	 */
- 	wait_event(part->teardown_wq, (atomic_read(&part->references) = 0));
+ 	wait_event(part->teardown_wq, (atomic_read(&part->references) == 0));
 diff --git a/arch/ia64/sn/kernel/xpnet.c b/arch/ia64/sn/kernel/xpnet.c
 index 88fad85..4226bdb 100644
 --- a/arch/ia64/sn/kernel/xpnet.c
@@ -695,7 +695,8 @@ index 935029f..239b3ce 100644
 -	 * Find the required number of free consequtive ates.
 +	 * Find the required number of free consecutive ates.
  	 */
- 	start_index  	    find_free_ate(ate_resource, ate_resource->lowest_free_index,
+ 	start_index =
+ 	    find_free_ate(ate_resource, ate_resource->lowest_free_index,
 @@ -105,7 +105,7 @@ static inline int alloc_ate_resource(struct ate_resource *ate_resource,
  /*
   * Allocate "count" contiguous Bridge Address Translation Entries
diff --git a/a/content_digest b/N1/content_digest
index 498eb16..77c8b15 100644
--- a/a/content_digest
+++ b/N1/content_digest
@@ -1,6 +1,6 @@
  "From\0Simon Arlott <simon@fire.lp0.eu>\0"
  "Subject\0[PATCH] spelling fixes: arch/ia64/\0"
- "Date\0Fri, 11 May 2007 19:41:49 +0000\0"
+ "Date\0Fri, 11 May 2007 20:41:49 +0100\0"
  "To\0Linux Kernel Mailing List <linux-kernel@vger.kernel.org>"
   linux-ia64@vger.kernel.org
  " trivial@kernel.org\0"
@@ -65,8 +65,8 @@
  " \tnd = (struct ia64_mca_notify_die *)args->err;\n"
  "-\t/* Reason code 1 means machine check rendezous*/\n"
  "+\t/* Reason code 1 means machine check rendezvous*/\n"
- " \tif ((val = DIE_INIT_MONARCH_ENTER || val = DIE_INIT_SLAVE_ENTER) &&\n"
- " \t\t nd->sos->rv_rc = 1)\n"
+ " \tif ((val == DIE_INIT_MONARCH_ENTER || val == DIE_INIT_SLAVE_ENTER) &&\n"
+ " \t\t nd->sos->rv_rc == 1)\n"
  " \t\treturn NOTIFY_DONE;\n"
  "diff --git a/arch/ia64/kernel/irq.c b/arch/ia64/kernel/irq.c\n"
  "index ce49c85..f88ff7c 100644\n"
@@ -119,16 +119,16 @@
  "@@ -151,12 +151,12 @@ static uint __kprobes is_cmp_ctype_unc_inst(uint template, uint slot,\n"
  " \n"
  " \tcmp_inst.l = kprobe_inst;\n"
- " \tif ((cmp_inst.f.x2 = 0) || (cmp_inst.f.x2 = 1)) {\n"
+ " \tif ((cmp_inst.f.x2 == 0) || (cmp_inst.f.x2 == 1)) {\n"
  "-\t\t/* Integere compare - Register Register (A6 type)*/\n"
  "+\t\t/* Integer compare - Register Register (A6 type)*/\n"
- " \t\tif ((cmp_inst.f.tb = 0) && (cmp_inst.f.ta = 0)\n"
- " \t\t\t\t&&(cmp_inst.f.c = 1))\n"
+ " \t\tif ((cmp_inst.f.tb == 0) && (cmp_inst.f.ta == 0)\n"
+ " \t\t\t\t&&(cmp_inst.f.c == 1))\n"
  " \t\t\tctype_unc = 1;\n"
- " \t} else if ((cmp_inst.f.x2 = 2)||(cmp_inst.f.x2 = 3)) {\n"
+ " \t} else if ((cmp_inst.f.x2 == 2)||(cmp_inst.f.x2 == 3)) {\n"
  "-\t\t/* Integere compare - Immediate Register (A8 type)*/\n"
  "+\t\t/* Integer compare - Immediate Register (A8 type)*/\n"
- " \t\tif ((cmp_inst.f.ta = 0) &&(cmp_inst.f.c = 1))\n"
+ " \t\tif ((cmp_inst.f.ta == 0) &&(cmp_inst.f.c == 1))\n"
  " \t\t\tctype_unc = 1;\n"
  " \t}\n"
  "@@ -950,7 +950,7 @@ int __kprobes setjmp_pre_handler(struct kprobe *p, struct pt_regs *regs)\n"
@@ -513,7 +513,7 @@
  " \t * we make the first section be the entire transfer\n"
  "@@ -337,7 +337,7 @@ bte_result_t bte_unaligned_copy(u64 src, u64 dest, u64 len, u64 mode)\n"
  " \n"
- " \t\t\tif (footBcopyDest = (headBcopyDest + headBcopyLen)) {\n"
+ " \t\t\tif (footBcopyDest == (headBcopyDest + headBcopyLen)) {\n"
  " \t\t\t\t/*\n"
  "-\t\t\t\t * We have two contigous bcopy\n"
  "+\t\t\t\t * We have two contiguous bcopy\n"
@@ -629,7 +629,7 @@
  "+\t * Before proceeding with the teardown we have to wait until all\n"
  " \t * existing references cease.\n"
  " \t */\n"
- " \twait_event(part->teardown_wq, (atomic_read(&part->references) = 0));\n"
+ " \twait_event(part->teardown_wq, (atomic_read(&part->references) == 0));\n"
  "diff --git a/arch/ia64/sn/kernel/xpnet.c b/arch/ia64/sn/kernel/xpnet.c\n"
  "index 88fad85..4226bdb 100644\n"
  "--- a/arch/ia64/sn/kernel/xpnet.c\n"
@@ -703,7 +703,8 @@
  "-\t * Find the required number of free consequtive ates.\n"
  "+\t * Find the required number of free consecutive ates.\n"
  " \t */\n"
- " \tstart_index  \t    find_free_ate(ate_resource, ate_resource->lowest_free_index,\n"
+ " \tstart_index =\n"
+ " \t    find_free_ate(ate_resource, ate_resource->lowest_free_index,\n"
  "@@ -105,7 +105,7 @@ static inline int alloc_ate_resource(struct ate_resource *ate_resource,\n"
  " /*\n"
  "  * Allocate \"count\" contiguous Bridge Address Translation Entries\n"
@@ -819,4 +820,4 @@
  "-- \n"
  Simon Arlott
 
-83c743b6ccf6a1173c63006ce1bc0e6c1a98345aaa08dbce0a809f57e7488e12
+880853de5e1a10f7e3ac0cc5d79af0ad5b05ab81a642b7c2e38b40351e3f925d

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.